From: Eli Friedman Date: Mon, 23 Mar 2009 00:04:01 +0000 (+0000) Subject: Fix a few more instances of "&>". X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=700b1339aec11f70293c6cf5908515eab5c66d01;p=clang Fix a few more instances of "&>". git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67496 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/parsing.c b/test/Driver/parsing.c index c94af8e213..98e050e7b1 100644 --- a/test/Driver/parsing.c +++ b/test/Driver/parsing.c @@ -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