diff options
author | Dan McGee <dan@archlinux.org> | 2007-02-28 17:37:24 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-02-28 17:37:24 +0100 |
commit | 13e21110459aaf99dd739802c2b07b3d5b9e2a68 (patch) | |
tree | e8df3fa922cbd076185e56f1cd0e3a665c17b58d /pactest/pmenv.py | |
parent | bdac9105892dae8b74952f86300e6161363b93d4 (diff) | |
download | pacman-13e21110459aaf99dd739802c2b07b3d5b9e2a68.tar.gz pacman-13e21110459aaf99dd739802c2b07b3d5b9e2a68.tar.xz |
* Unifying placement of REPLACES in desc file, as pacman2 does. We'll worry
about bigger DB changes later, but lets not screw anything up for release.
* Removed some weird uses of "not ... ==" usage in pactest- correct me if I'm
wrong, but isn't "!=" a lot more clean and concise?
* Print description of failed tests in the pactest summary. This could get
dirty with a lot of failed tests though, so watch out.
Diffstat (limited to 'pactest/pmenv.py')
-rwxr-xr-x | pactest/pmenv.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/pactest/pmenv.py b/pactest/pmenv.py index 3a2ecb14..56af2e9a 100755 --- a/pactest/pmenv.py +++ b/pactest/pmenv.py @@ -104,11 +104,16 @@ class pmenv: fail = test.result["fail"] rules = len(test.rules) if fail == 0: - print "[PASSED]", + result = "[PASSED]" else: - print "[FAILED]", + result = "[FAILED]" + print result, print "%s Rules: OK = %2u FAIL = %2u SKIP = %2u" \ - % (test.testname.ljust(32), success, fail, rules - (success + fail)) + % (test.testname.ljust(32), success, fail, \ + rules - (success + fail)) + if fail != 0: + # print test description if test failed + print " ", test.description print "=========="*8 print "Results" |