diff options
author | Edwin Vane <edwin.vane@intel.com> | 2013-02-28 20:11:25 +0000 |
---|---|---|
committer | Edwin Vane <edwin.vane@intel.com> | 2013-02-28 20:11:25 +0000 |
commit | 4b8075255040c2e1c41b49dce6e005ab2d4d7efc (patch) | |
tree | 36020d7e0d3baad54abb17bbe5769276f301b69e | |
parent | a26f71c9edd842cba1f162fe071a771756991eb4 (diff) | |
download | bcm5719-llvm-4b8075255040c2e1c41b49dce6e005ab2d4d7efc.tar.gz bcm5719-llvm-4b8075255040c2e1c41b49dce6e005ab2d4d7efc.zip |
Don't use 'exit' in lit script
Some buildbots use a shell that doesn't know 'exit'. So instead of using XFAIL
for UseAuto/iterator.cpp (since this problem doesn't exist for cmake) leave the
'grep' command and turn off the others.
llvm-svn: 176295
-rw-r--r-- | clang-tools-extra/test/cpp11-migrate/UseAuto/iterator.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/clang-tools-extra/test/cpp11-migrate/UseAuto/iterator.cpp b/clang-tools-extra/test/cpp11-migrate/UseAuto/iterator.cpp index 447432fec38..154914bd3f1 100644 --- a/clang-tools-extra/test/cpp11-migrate/UseAuto/iterator.cpp +++ b/clang-tools-extra/test/cpp11-migrate/UseAuto/iterator.cpp @@ -1,7 +1,4 @@ -// RUN: exit 0 -// -// Until a recursive make issue can be fixed, can't use %gen_root. -// NORUN grep -Ev "// *[A-Z-]+:" %s > %t.cpp +// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp // NORUN cpp11-migrate -use-auto %t.cpp -- --std=c++11 -I %gen_root/UseAuto/Inputs // NORUN FileCheck -input-file=%t.cpp %s #include "my_std.h" |