summaryrefslogtreecommitdiffstats
path: root/source/stf
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2003-03-14 04:50:17 +0000
committerMartin Pool <mbp@samba.org>2003-03-14 04:50:17 +0000
commite7eafa10da828b4dc46a05a99164eb8ac37563df (patch)
tree63168ee8159cc571aa3613e1246efdb7bc1f0b29 /source/stf
parentfb85311941967fa1080b84103a01d16b4fd33926 (diff)
downloadsamba-e7eafa10da828b4dc46a05a99164eb8ac37563df.tar.gz
samba-e7eafa10da828b4dc46a05a99164eb8ac37563df.tar.xz
samba-e7eafa10da828b4dc46a05a99164eb8ac37563df.zip
Merge from Subversion
* Better report formatting
Diffstat (limited to 'source/stf')
-rw-r--r--source/stf/comfychair.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/stf/comfychair.py b/source/stf/comfychair.py
index b552baccd20..d7e23efc10f 100644
--- a/source/stf/comfychair.py
+++ b/source/stf/comfychair.py
@@ -170,7 +170,7 @@ Output:
# Either we could not execute the command or the command
# returned exit code 127. According to system(3) we can't
# tell the difference.
- raise NotRunError, "could not execute %s" % cmd
+ raise NotRunError, "could not execute %s" % `cmd`
return rc, output
def explain_failure(self, exc_info = None):
@@ -213,7 +213,7 @@ def runtests(test_list, verbose = 0):
import traceback
ret = 0
for test_class in test_list:
- print "%-60s" % _test_name(test_class),
+ print "%-30s" % _test_name(test_class),
# flush now so that long running tests are easier to follow
sys.stdout.flush()