From: Daniel Dunbar Date: Tue, 13 Jan 2009 21:11:28 +0000 (+0000) Subject: ccc: Fix a test case. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3bd391b569e38c6ef7a6155641d4d3622b5616be;p=clang ccc: Fix a test case. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62183 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/ccc/test/ccc/Xarch.c b/tools/ccc/test/ccc/Xarch.c index 9c0ebde2db..0c0eee0121 100644 --- a/tools/ccc/test/ccc/Xarch.c +++ b/tools/ccc/test/ccc/Xarch.c @@ -1,8 +1,8 @@ // RUN: xcc -### -fsyntax-only -Xarch_i386 -Wall -Xarch_ppc -Wunused -arch i386 -arch ppc %s &> %t && // RUN: grep '"-Xarch"' %t | count 0 && // RUN: grep '"-Wall"' %t | count 1 && -// RUN: grep 'i686-apple' %t | grep '"-m32"' | count 1 && -// RUN: grep '"-Wall"' %t | grep 'i686-apple' | grep '"-m32"' | count 1 && +// RUN: grep 'i686-apple' %t | grep -v '"-m64"' | count 1 && +// RUN: grep '"-Wall"' %t | grep 'i686-apple' | grep -v '"-m64"' | count 1 && // RUN: grep '"-Wunused"' %t | count 1 && // RUN: grep '"-arch" "ppc"' %t | count 1 && // RUN: grep '"-Wunused"' %t | grep '"-arch" "ppc"' | count 1