diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-05-03 23:14:36 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-05-03 23:14:36 +0000 |
commit | f4287fd57056ffc9cd273b0f169dadde275e2901 (patch) | |
tree | 8d0b1e728f657011968cdb7d6a6c1c13d2ee3642 | |
parent | 613e12a48215fee92cf6c79ec93bdf29395654d6 (diff) |
Make diagnostic printing more deterministic when running tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70809 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | test/TestRunner.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/TestRunner.sh b/test/TestRunner.sh index bb20728578..5555364f4d 100755 --- a/test/TestRunner.sh +++ b/test/TestRunner.sh @@ -18,6 +18,9 @@ TESTNAME=$1 SUBST=$1 FILEDIR=`dirname $TESTNAME` +# Make diagnostic printing more determinstic. +export COLUMNS=999 + OUTPUT=Output/$1.out # create the output directory if it does not already exist |