aboutsummaryrefslogtreecommitdiff
path: root/utils/lit/TestRunner.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/lit/TestRunner.py')
-rw-r--r--utils/lit/TestRunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lit/TestRunner.py b/utils/lit/TestRunner.py
index 954013aded..5c1e8ea5be 100644
--- a/utils/lit/TestRunner.py
+++ b/utils/lit/TestRunner.py
@@ -192,7 +192,7 @@ def executeTclScriptInternal(test, litConfig, tmpBase, commands, cwd):
try:
cmds.append(TclUtil.TclExecCommand(tokens).parse_pipeline())
except:
- return (TestStatus.Fail, "Tcl 'exec' parse error on: %r" % ln)
+ return (Test.FAIL, "Tcl 'exec' parse error on: %r" % ln)
cmd = cmds[0]
for c in cmds[1:]: