diff options
author | Dan Gohman <gohman@apple.com> | 2007-12-11 15:50:23 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-12-11 15:50:23 +0000 |
commit | 83935ac59d5f1760cb127a57e48bb74712ef9507 (patch) | |
tree | eb8e63a790cc01243536dcd72946271dce38ecb3 /test/CFrontend | |
parent | 131c60ab9c7971821c103b5acae190dfad57bb80 (diff) |
Use not instead of ignore when an exit status is expected to always
be non-zero.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44866 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CFrontend')
-rw-r--r-- | test/CFrontend/2006-09-25-DebugFilename.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CFrontend/2006-09-25-DebugFilename.c b/test/CFrontend/2006-09-25-DebugFilename.c index 2139c1ade5..eea52ba760 100644 --- a/test/CFrontend/2006-09-25-DebugFilename.c +++ b/test/CFrontend/2006-09-25-DebugFilename.c @@ -1,4 +1,4 @@ -// RUN: ignore %llvmgcc -xc %s -S -o /dev/null |& \ +// RUN: not %llvmgcc -xc %s -S -o /dev/null |& \ // RUN: grep fluffy | grep 2006-09-25-DebugFilename.c #include "2006-09-25-DebugFilename.h" int func1() { return hfunc1(); } |