aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-08-04 00:00:13 +0000
committerDan Gohman <gohman@apple.com>2010-08-04 00:00:13 +0000
commit9ddf8bba75c8659c533bc0c4a30d7c2aae1239df (patch)
treef1f31d699a5dec04c0d9f1ee28d68533effe9db6 /utils
parent62377cbca04c9b02820007b47b5e3e2fff90db8e (diff)
downloadexternal_llvm-9ddf8bba75c8659c533bc0c4a30d7c2aae1239df.zip
external_llvm-9ddf8bba75c8659c533bc0c4a30d7c2aae1239df.tar.gz
external_llvm-9ddf8bba75c8659c533bc0c4a30d7c2aae1239df.tar.bz2
Use the regular conditional operator syntax instead of a clever hack.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110168 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/lit/lit/TestRunner.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/lit/lit/TestRunner.py b/utils/lit/lit/TestRunner.py
index 3c2fe38..f653245 100644
--- a/utils/lit/lit/TestRunner.py
+++ b/utils/lit/lit/TestRunner.py
@@ -522,10 +522,10 @@ def executeTclTest(test, litConfig):
out,err,exitCode = res
if isXFail:
ok = exitCode != 0
- status = (Test.XPASS, Test.XFAIL)[ok]
+ status = Test.XFAIL if ok else Test.XPASS
else:
ok = exitCode == 0
- status = (Test.FAIL, Test.PASS)[ok]
+ status = Test.PASS if ok else Test.FAIL
if ok:
return (status,'')
@@ -558,10 +558,10 @@ def executeShTest(test, litConfig, useExternalSh):
out,err,exitCode = res
if isXFail:
ok = exitCode != 0
- status = (Test.XPASS, Test.XFAIL)[ok]
+ status = Test.XFAIL if ok else Test.XPASS
else:
ok = exitCode == 0
- status = (Test.FAIL, Test.PASS)[ok]
+ status = Test.PASS if ok else Test.FAIL
if ok:
return (status,'')