]> granicus.if.org Git - clang/commitdiff
Use not instead of ! in tests.
authorDaniel Dunbar <daniel@zuster.org>
Tue, 24 Mar 2009 01:59:55 +0000 (01:59 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 24 Mar 2009 01:59:55 +0000 (01:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67601 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/2008-07-17-no-emit-on-error.c
test/Coverage/codegen-gnu.m
test/Driver/parsing.c

index 5339695887e3b3f97236b1960162881a501e5098..1d3c87be9122c4b0cbe2296e21f88e21f3a73601 100644 (file)
@@ -1,6 +1,6 @@
 // RUN: rm -f %t1.bc 
-// RUN: ! clang %s -emit-llvm-bc -o %t1.bc
-// RUN: ! test -f %t1.bc
+// RUN: not clang %s -emit-llvm-bc -o %t1.bc
+// RUN: not test -f %t1.bc
 
 void f() {
 }
index 1443cf1876efc467a38d354d9afb6e2999221bc6..adaf53c46705ec63ebc3b384b32c677439328e8a 100644 (file)
@@ -2,6 +2,6 @@
 // RUN: clang -triple i386-unknown-unknown -DIRGENABLE_GNU -DIRGENABLE -g -fgnu-runtime -emit-llvm -o %t %s &&
 
 // FIXME: Remove once GNU can IRgen everything.
-// RUN: ! clang -triple i386-unknown-unknown -fgnu-runtime -emit-llvm -o %t %s
+// RUN: not clang -triple i386-unknown-unknown -fgnu-runtime -emit-llvm -o %t %s
 
 #include "objc-language-features.inc"
index 98e050e7b1a2b5e0e41a26eb97014f12ef84b8f2..59004d6157779186c4c7457f319f23b094832456 100644 (file)
@@ -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 2> %t &&
+// RUN: not clang-driver -V 2> %t &&
 // RUN: grep "error: argument to '-V' is missing (expected 1 value)" %t &&
-// RUN: ! clang-driver -sectalign 1 2 2> %t &&
+// RUN: not clang-driver -sectalign 1 2 2> %t &&
 // RUN: grep "error: argument to '-sectalign' is missing (expected 3 values)" %t &&
 
 // RUN: true