aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2018-04-03 13:06:01 +0200
committerGuido Günther <agx@sigxcpu.org>2018-04-03 13:06:01 +0200
commit20b0946e0bbc37c8466418b58f4f3b9fd6123338 (patch)
treeb9ce5ee5bcabc44a85163f0ded4fbcc048dc4e92 /tests
parentc159d0ba16636bc3692b89555b258a3bc7907902 (diff)
Revert "Turn on several threads when creating xz/lzma tarballs"
This changes the tarballs and therefore the checksums. This reverts commit fd81e454339de50931594bd150857eb88a516a98.
Diffstat (limited to 'tests')
-rw-r--r--tests/component/deb/test_export_orig.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/component/deb/test_export_orig.py b/tests/component/deb/test_export_orig.py
index e3d69571..e42a1fc2 100644
--- a/tests/component/deb/test_export_orig.py
+++ b/tests/component/deb/test_export_orig.py
@@ -44,19 +44,16 @@ class TestExportOrig(ComponentTestBase):
tarballs = ["../%s_2.8.orig-foo.tar.gz" % pkg,
"../%s_2.8.orig.tar.gz" % pkg]
- assert import_dsc(['arg0', '--no-pristine-tar', '--verbose', dsc]) == 0
+ assert import_dsc(['arg0', '--no-pristine-tar', dsc]) == 0
repo = ComponentTestGitRepository(pkg)
os.chdir(pkg)
assert_false(repo.has_branch('pristine-tar'), "Pristine-tar branch must not exist")
for t in tarballs:
self.assertFalse(os.path.exists(t), "Tarball %s must not exist" % t)
ret = export_orig(['arg0',
- '--verbose',
'--component=foo',
'--no-pristine-tar'])
ok_(ret == 0, "Exporting tarballs failed")
- self._check_in_info_log(".*Building upstream tarball with compression "
- "<compressor type='gzip' parallel=True>")
for t in tarballs:
self.assertTrue(os.path.exists(t), "Tarball %s not found" % t)