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 | 9b712b3c8d7e477dc4d607f445983afe2633a49a (patch) | |
tree | b6978348033ebd02e2e40aebb680789ce41f3559 /llvm/utils | |
parent | 3eeddd22dde30bd312b074fef2a983c38d948dda (diff) | |
download | bcm5719-llvm-9b712b3c8d7e477dc4d607f445983afe2633a49a.tar.gz bcm5719-llvm-9b712b3c8d7e477dc4d607f445983afe2633a49a.zip |
Fix a refactoro.
llvm-svn: 81192
Diffstat (limited to 'llvm/utils')
-rw-r--r-- | llvm/utils/lit/TestRunner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/lit/TestRunner.py b/llvm/utils/lit/TestRunner.py index 954013adedc..5c1e8ea5be1 100644 --- a/llvm/utils/lit/TestRunner.py +++ b/llvm/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:]: |