diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-08 05:37:51 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-08 05:37:51 +0000 |
commit | 2c0a49c8cba8b7a6624d9c0b96f7d94231e10d22 (patch) | |
tree | 2839de7acd82e639db5bfa0a1cf02b07a0e527b6 /utils/lit/TestRunner.py | |
parent | 70a3b77df8375377572498037a99a644656b8f05 (diff) |
Fix a refactoro.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81192 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/lit/TestRunner.py')
-rw-r--r-- | utils/lit/TestRunner.py | 2 |
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:]: |