[test-suite] r257524 - [test-suite] Address an exception due to the incorrect unpacking of arguments.
Chad Rosier via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 12 13:27:47 PST 2016
Author: mcrosier
Date: Tue Jan 12 15:27:46 2016
New Revision: 257524
URL: http://llvm.org/viewvc/llvm-project?rev=257524&view=rev
Log:
[test-suite] Address an exception due to the incorrect unpacking of arguments.
http://reviews.llvm.org/D16121
Modified:
test-suite/trunk/lit.cfg
Modified: test-suite/trunk/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/lit.cfg?rev=257524&r1=257523&r2=257524&view=diff
==============================================================================
--- test-suite/trunk/lit.cfg (original)
+++ test-suite/trunk/lit.cfg Tue Jan 12 15:27:46 2016
@@ -189,7 +189,7 @@ class TestSuiteTest(FileBasedTest):
output += "\n" + "\n".join(runscript)
- out, err, exitCode = res
+ out, err, exitCode, timeoutInfo = res
if exitCode == Test.FAIL:
# Only show command output in case of errors
output += "\n" + out
@@ -208,7 +208,7 @@ class TestSuiteTest(FileBasedTest):
res = runScript(test, litConfig, verifyscript, tmpBase)
if isinstance(res, lit.Test.Result):
return res
- out, err, exitCode = res
+ out, err, exitCode, timeoutInfo= res
output += "\n" + "\n".join(verifyscript)
if exitCode != 0:
More information about the llvm-commits
mailing list