commit | b5828675679c0d36b64be22de64c7c4ec0d3f2be | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Tue Dec 11 15:50:23 2007 +0000 |
committer | Dan Gohman <gohman@apple.com> | Tue Dec 11 15:50:23 2007 +0000 |
tree | 2af839904e4fd354497b871ff937bbfa93ae2220 | |
parent | cfed707c12b0691086796a4d32b752559554d4b3 [diff] [blame] |
Use not instead of ignore when an exit status is expected to always be non-zero. llvm-svn: 44866
diff --git a/llvm/test/Feature/globalredefinition3.ll b/llvm/test/Feature/globalredefinition3.ll index 9906c06..d40d3e9 100644 --- a/llvm/test/Feature/globalredefinition3.ll +++ b/llvm/test/Feature/globalredefinition3.ll
@@ -1,4 +1,4 @@ -; RUN: ignore llvm-as < %s -o /dev/null -f |& grep \ +; RUN: not llvm-as < %s -o /dev/null -f |& grep \ ; RUN: "Redefinition of global variable named 'B'" ; END.