From 429b956fb2d21309cae0560d6d98225969447737 Mon Sep 17 00:00:00 2001 From: Andrew Gregory Date: Thu, 1 Aug 2013 22:51:24 -0400 Subject: pactest: treat unknown rules as failures Tests should only be skipped when they aren't relevant, not when the test itself is bad. Signed-off-by: Andrew Gregory Signed-off-by: Allan McRae --- test/pacman/pmenv.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'test/pacman/pmenv.py') diff --git a/test/pacman/pmenv.py b/test/pacman/pmenv.py index 9a88262e..5eaa473c 100644 --- a/test/pacman/pmenv.py +++ b/test/pacman/pmenv.py @@ -110,9 +110,8 @@ class pmenv(object): else: result = "[FAIL]" print result, - print "%s Rules: OK = %2u FAIL = %2u SKIP = %2u" \ - % (t.testname.ljust(34), success, fail, \ - rules - (success + fail)) + print "%s Rules: OK = %2u FAIL = %2u" \ + % (t.testname.ljust(34), success, fail) if fail != 0: # print test description if test failed print " ", t.description -- cgit v1.2.3