From 4f39764c49369c219abc8412eeb9e0b77c137e2e Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Tue, 3 Jan 2012 13:02:37 +0100 Subject: Fix CLI output exit status. --- pmstestsuite/output/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmstestsuite/output/cli.py b/pmstestsuite/output/cli.py index d07fbfa..540abaf 100644 --- a/pmstestsuite/output/cli.py +++ b/pmstestsuite/output/cli.py @@ -29,6 +29,6 @@ class CLIOutput(OutputModule): print('-> %s: %s [%s%s]' % (a.name, str(a), 'OK' if a else 'FAILED', '/UNDEF' if a.undefined else '')) - ret &= bool(failed) + ret &= not bool(failed) return ret -- cgit v1.2.3-65-gdbad