diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-24 01:59:55 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-24 01:59:55 +0000 |
commit | 4aacad1f9348ccd2e40d3baeaf9826d456ef179e (patch) | |
tree | c177140becafde6ed7f8aedb1883e77abcd7dddb /clang | |
parent | 8f0d218598a19ef1735819d6d3578a62d2882dd4 (diff) | |
download | bcm5719-llvm-4aacad1f9348ccd2e40d3baeaf9826d456ef179e.tar.gz bcm5719-llvm-4aacad1f9348ccd2e40d3baeaf9826d456ef179e.zip |
Use not instead of ! in tests.
llvm-svn: 67601
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/CodeGen/2008-07-17-no-emit-on-error.c | 4 | ||||
-rw-r--r-- | clang/test/Coverage/codegen-gnu.m | 2 | ||||
-rw-r--r-- | clang/test/Driver/parsing.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/clang/test/CodeGen/2008-07-17-no-emit-on-error.c b/clang/test/CodeGen/2008-07-17-no-emit-on-error.c index 5339695887e..1d3c87be912 100644 --- a/clang/test/CodeGen/2008-07-17-no-emit-on-error.c +++ b/clang/test/CodeGen/2008-07-17-no-emit-on-error.c @@ -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() { } diff --git a/clang/test/Coverage/codegen-gnu.m b/clang/test/Coverage/codegen-gnu.m index 1443cf1876e..adaf53c4670 100644 --- a/clang/test/Coverage/codegen-gnu.m +++ b/clang/test/Coverage/codegen-gnu.m @@ -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" diff --git a/clang/test/Driver/parsing.c b/clang/test/Driver/parsing.c index 98e050e7b1a..59004d61577 100644 --- a/clang/test/Driver/parsing.c +++ b/clang/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 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 |