From 12f19801bf46ecceda69e476119a787e405ff904 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sun, 02 Jun 2013 10:12:27 -0400 Subject: Delete upstream source directory. --- (limited to 'src/tests/regress/.svn/text-base/issue45.py.svn-base') diff --git a/src/tests/regress/.svn/text-base/issue45.py.svn-base b/src/tests/regress/.svn/text-base/issue45.py.svn-base deleted file mode 100644 index 30735f9..0000000 --- a/src/tests/regress/.svn/text-base/issue45.py.svn-base +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/python3 - -import os -import opk, cfg, opkgcl - -opk.regress_init() - -o = opk.OpkGroup() -o.add(Package="a", Depends="b") -o.add(Package="b") -o.write_opk() -o.write_list() - -opkgcl.update() - -(status, output) = opkgcl.opkgcl("install --force-postinstall a") -ln_a = output.find("Configuring a") -ln_b = output.find("Configuring b") - -if ln_a == -1: - print(__file__, ": Didn't see package 'a' get configured.") - exit(False) - -if ln_b == -1: - print(__file__, ": Didn't see package 'b' get configured.") - exit(False) - -if ln_a < ln_b: - print(__file__, ": Packages 'a' and 'b' configured in wrong order.") - exit(False) - -opkgcl.remove("a") -opkgcl.remove("b") -- cgit v0.9.1