[llvm-commits] [test-suite] r58151 - /test-suite/trunk/SingleSource/Regression/C/PR491.c

Dan Gohman gohman at apple.com
Sat Oct 25 13:40:12 PDT 2008


Author: djg
Date: Sat Oct 25 15:40:10 2008
New Revision: 58151

URL: http://llvm.org/viewvc/llvm-project?rev=58151&view=rev
Log:
Make this test return 0 on success instead of 1.

Modified:
    test-suite/trunk/SingleSource/Regression/C/PR491.c

Modified: test-suite/trunk/SingleSource/Regression/C/PR491.c
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/Regression/C/PR491.c?rev=58151&r1=58150&r2=58151&view=diff

==============================================================================
--- test-suite/trunk/SingleSource/Regression/C/PR491.c (original)
+++ test-suite/trunk/SingleSource/Regression/C/PR491.c Sat Oct 25 15:40:10 2008
@@ -26,6 +26,6 @@
 }
 
 int main() {
-    return test(1) == 1;
+    return test(1) != 1;
 }
 





More information about the llvm-commits mailing list