From c8750122157f38c38b4827e6d0e71a9867ac3d37 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Wed, 6 Jun 2018 10:18:20 -0400 Subject: [PATCH] (fix) a bit more verbose output --- Tests/Integration/test-sogo-tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Integration/test-sogo-tool.py b/Tests/Integration/test-sogo-tool.py index 1e4e604c1..afbb89c29 100755 --- a/Tests/Integration/test-sogo-tool.py +++ b/Tests/Integration/test-sogo-tool.py @@ -34,7 +34,7 @@ class sogoToolTest(unittest.TestCase): os.chown(self.backupdir, uid, gid) status = os.system("sudo -u %s bash -c \"(cd %s && %s backup . ALL >/dev/null 2>&1)\"" % (sogo_user, self.backupdir, sogo_tool_path)) - + print "Exit status of os.system(): %d" % status rc=os.WEXITSTATUS(status) self.assertEqual(rc, 0, "sogo-tool failed RC=%d" % rc)