~ed.so/duplicity/reuse-passphrase-for-signing-fix

« back to all changes in this revision

Viewing changes to testing/misctest.py

  • Committer: Kenneth Loafman
  • Date: 2009-09-25 14:19:25 UTC
  • Revision ID: kenneth@loafman.com-20090925141925-g2g4qdhfjsmm2ih9
Fix problems with unittests under Jaunty.  It appears that redirection
in os.system() has changed for the worse, so a workaround for now.

Fix problem in restart where there were no manifest entries and no
remote volumes stored.  We clean out the partial and restart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
class MiscTest(unittest.TestCase):
32
32
    """Test functions/classes in misc.py"""
33
33
    def setUp(self):
34
 
        assert not os.system("tar xzf testfiles.tar.gz >& /dev/null")
 
34
        assert not os.system("tar xzf testfiles.tar.gz > /dev/null 2>&1")
35
35
 
36
36
    def tearDown(self):
37
37
        assert not os.system("rm -rf testfiles tempdir temp2.tar")