commit | 1ab10d45bf7669a299a20021fa5c69845d9f0ee0 | [log] [tgz] |
---|---|---|
author | Eli Friedman <eli.friedman@gmail.com> | Sun Mar 22 21:49:20 2009 +0000 |
committer | Eli Friedman <eli.friedman@gmail.com> | Sun Mar 22 21:49:20 2009 +0000 |
tree | a09181fa89422ebf4d4aa66a847123be7a78a15a | |
parent | bd53271dc7570b54f7b7cab7b09bcf04c6e927f6 [diff] [blame] |
Don't use &> in tests; dash doesn't understand it. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67483 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Driver/hello.c b/test/Driver/hello.c index 8844ede..49c5276 100644 --- a/test/Driver/hello.c +++ b/test/Driver/hello.c
@@ -1,4 +1,4 @@ -// RUN: clang-driver -ccc-echo -o %t %s &> %t.log && +// RUN: clang-driver -ccc-echo -o %t %s 2> %t.log && // Make sure we used clang. // RUN: grep 'clang" .*hello.c' %t.log &&