summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2007-12-06 19:34:08 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2007-12-06 19:34:08 +0100
commit4c10eb1a2c54eda92469ffe984e8a56f70f5cf3d (patch)
tree74da277692ed78a0edf763ca0c83d4b1ef6558c3 /test
parent773721d74cee9bc7136afc097e479387be7dea7d (diff)
parent8076139ead08124e86be5f993baa8a43c22b0137 (diff)
* methods/gpgv.cc:
- remove cruft code that caused timestamp/I-M-S issues * ftparchive/contents.cc: - fix error output * methods/mirror.{cc,h}: - only update mirror list on IndexFile updates * ftparchive/contents.cc: - support lzma data members * ftparchive/multicompress.cc: - support lzma output
Diffstat (limited to 'test')
-rwxr-xr-xtest/pre-upload-check.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/pre-upload-check.py b/test/pre-upload-check.py
index 373683360..268b3d672 100755
--- a/test/pre-upload-check.py
+++ b/test/pre-upload-check.py
@@ -120,22 +120,6 @@ class testLocalRepositories(unittest.TestCase):
self.assert_(os.path.exists(os.path.join(self.repo,"Packages.gz")),
"Packages.gz vanished from local repo")
- def testLocalRepo2(self):
- repo = os.path.abspath(os.path.join(os.getcwd(), self.repo_dir+"2"))
- sources = os.path.join(self.repo, "sources.list")
- s = open(sources,"w")
- s.write("deb file://%s/ /\n" % repo)
- s.close()
-
- # two times to get at least one i-m-s hit
- for i in range(2):
- self.assert_(os.path.exists(sources))
- cmd = [self.apt,"update","-o", "Dir::Etc::sourcelist=%s" % sources]+apt_args
- res = call(cmd, stdout=stdout, stderr=stderr)
- self.assertEqual(res, 0, "local repo2 test failed")
- self.assert_(os.path.exists(os.path.join(repo,"Packages.gz")),
- "Packages.gz vanished from local repo")
-
def testInstallFromLocalRepo(self):
apt = [self.apt,"-o", "Dir::Etc::sourcelist=%s"% self.sources]+apt_args
cmd = apt+["update"]