diff options
author | Martin Pool <mbp@samba.org> | 2003-03-14 04:50:17 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2003-03-14 04:50:17 +0000 |
commit | f764518bd100310a35b5d8cd9b747b12ae4a4755 (patch) | |
tree | 72314cd14e4b1c26093865898398a0c18629a6f4 /source3/stf | |
parent | 285886b3cf0b2e886d59ddafb4b06d6a2fb459ce (diff) | |
download | samba-f764518bd100310a35b5d8cd9b747b12ae4a4755.tar.gz |
Merge from Subversion
* Better report formatting
(This used to be commit e7eafa10da828b4dc46a05a99164eb8ac37563df)
Diffstat (limited to 'source3/stf')
-rw-r--r-- | source3/stf/comfychair.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/stf/comfychair.py b/source3/stf/comfychair.py index b552baccd20..d7e23efc10f 100644 --- a/source3/stf/comfychair.py +++ b/source3/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() |