[cfe-commits] r67496 - /cfe/trunk/test/Driver/parsing.c
Eli Friedman
eli.friedman at gmail.com
Sun Mar 22 17:04:01 PDT 2009
Author: efriedma
Date: Sun Mar 22 19:04:01 2009
New Revision: 67496
URL: http://llvm.org/viewvc/llvm-project?rev=67496&view=rev
Log:
Fix a few more instances of "&>".
Modified:
cfe/trunk/test/Driver/parsing.c
Modified: cfe/trunk/test/Driver/parsing.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/parsing.c?rev=67496&r1=67495&r2=67496&view=diff
==============================================================================
--- cfe/trunk/test/Driver/parsing.c (original)
+++ cfe/trunk/test/Driver/parsing.c Sun Mar 22 19:04:01 2009
@@ -10,9 +10,9 @@
// RUN: grep 'Option 8 - Name: "-Xarch_", Values: {"joined", "AndSeparate"}' %t &&
// RUN: grep 'Option 9 - Name: "-sectalign", Values: {"1", "2", "3"}' %t &&
-// RUN: ! clang-driver -V &> %t &&
+// RUN: ! clang-driver -V 2> %t &&
// RUN: grep "error: argument to '-V' is missing (expected 1 value)" %t &&
-// RUN: ! clang-driver -sectalign 1 2 &> %t &&
+// RUN: ! clang-driver -sectalign 1 2 2> %t &&
// RUN: grep "error: argument to '-sectalign' is missing (expected 3 values)" %t &&
// RUN: true
More information about the cfe-commits
mailing list