Index: /trunk/psLib/test/psTest.c
===================================================================
--- /trunk/psLib/test/psTest.c	(revision 538)
+++ /trunk/psLib/test/psTest.c	(revision 539)
@@ -26,11 +26,11 @@
 bool p_runTestSuite(FILE *fp, const char* testPointFile, const char* packageName, testDescription tests[])
 {
-    bool failed = false;
+    bool success = true;
 
     for (int index=0; tests[index].fcn != NULL; index++) {
-        failed = failed || p_runTest(fp,testPointFile,packageName,tests[index].testPointName,
-                                     tests[index].fcn,tests[index].expectedReturn);
+        success = p_runTest(fp,testPointFile,packageName,tests[index].testPointName,
+                            tests[index].fcn,tests[index].expectedReturn) && success;
     }
-    return failed;
+    return success;
 }
 
