diff options
author | David Chisnall <csdavec@swan.ac.uk> | 2012-02-29 13:00:44 +0000 |
---|---|---|
committer | David Chisnall <csdavec@swan.ac.uk> | 2012-02-29 13:00:44 +0000 |
commit | 66d45737860948d34b3f7e46d6d571a9de6cb22c (patch) | |
tree | 9c0bf32a66b6013b342aa92f05bd0b1c1998bd38 /libcxx | |
parent | ca78592c166e5052d0c97607f80884953a002304 (diff) | |
download | bcm5719-llvm-66d45737860948d34b3f7e46d6d571a9de6cb22c.tar.gz bcm5719-llvm-66d45737860948d34b3f7e46d6d571a9de6cb22c.zip |
Make the failure reporting in testit a bit more useful.
llvm-svn: 151719
Diffstat (limited to 'libcxx')
-rwxr-xr-x | libcxx/test/testit | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libcxx/test/testit b/libcxx/test/testit index 774f96fe1d7..c7409160f82 100755 --- a/libcxx/test/testit +++ b/libcxx/test/testit @@ -66,12 +66,14 @@ function afunc rm ./$TEST_EXE let "pass+=1" else - echo "$FILE failed at run time" + echo "`pwd`/$FILE failed at run time" + echo "Compile line was:" $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS let "fail+=1" rm ./$TEST_EXE fi else - echo "$FILE failed to compile" + echo "`pwd`/$FILE failed to compile" + echo "Compile line was:" $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS let "fail+=1" fi done |