From e1390c40a6135b5caa4b0f6db1c3375dcffd4d05 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 4 Aug 2010 00:00:13 +0000 Subject: 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 --- utils/lit/lit/TestRunner.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'utils/lit') 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,'') -- cgit v1.1