Index: /trunk/psLib/test/image/tst_psImageExtraction.c
===================================================================
--- /trunk/psLib/test/image/tst_psImageExtraction.c	(revision 1363)
+++ /trunk/psLib/test/image/tst_psImageExtraction.c	(revision 1364)
@@ -6,6 +6,6 @@
 *  @author Robert DeSonia, MHPCC
 *
-*  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-07-31 02:27:16 $
+*  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-08-02 18:30:10 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -30,5 +30,5 @@
 int main( int argc, char* argv[] )
 {
-    return runTestSuite( stderr, "psImage", tests, argc, argv );
+    return ! runTestSuite( stderr, "psImage", tests, argc, argv );
 }
 
Index: /trunk/psLib/test/tst_template.c
===================================================================
--- /trunk/psLib/test/tst_template.c	(revision 1363)
+++ /trunk/psLib/test/tst_template.c	(revision 1364)
@@ -1,21 +1,21 @@
 /** @file  tst_psImageManip.c
- *
- *  @brief Contains the tests for psImageManip.[ch]
- *
- *
- *  @author Robert DeSonia, MHPCC
- *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-29 19:29:40 $
- *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
- */
+*
+*  @brief Contains the tests for psImageManip.[ch]
+*
+*
+*  @author Robert DeSonia, MHPCC
+*
+*  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-08-02 18:30:10 $
+*
+*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+*/
 
 #include "psTest.h"
 #include "pslib.h"
 
-static int test1(void);
-static int test2(void);
-static int test3(void);
+static int test1( void );
+static int test2( void );
+static int test3( void );
 
 // test descrription consists of:
@@ -36,46 +36,56 @@
 //
 testDescription tests[] = {
-                              {test1,1111,"psFunctionBar",0,false},
-                              {test2,1113,"psFunctionFoo",0,false},
-                              {test3,1114,"psFunctionFunk",0,false},
-
+                              {
+                                  test1, 1111, "psFunctionBar", 0, false
+                              },
+                              {
+                                  test2, 1113, "psFunctionFoo", 0, false
+                              },
+                              {
+                                  test3, 1114, "psFunctionFunk", 0, false
+                              },
+                              
                               // testpoint #1112 handled by same test function as #1111
-                              {test1,1112,"psFunctionBang",0,true},
-
+                              {
+                                  test1, 1112, "psFunctionBang", 0, true
+                              },
+                              
                               // A null terminates the testDescription list
-                              {NULL}
+                              {
+                                  NULL
+                              }
                           };
-
-int main(int argc, char* argv[])
+                          
+int main( int argc, char* argv[] )
 {
-    psLogSetLevel(PS_LOG_INFO);
-
-    return runTestSuite(stderr,"psImage",tests,argc,argv);
+    psLogSetLevel( PS_LOG_INFO );
+    
+    return ( ! runTestSuite( stderr, "psImage", tests, argc, argv ) );
 }
 
-int test1(void)
+int test1( void )
 {
     // no need to check for memory leaks, as the runTestSuite does that for you.
-
+    
     // here is where one implements the tests for generally a single testpoint.
-
+    
     return 0;  // the value that indicates success is part of the testDescription
 }
 
-int test2(void)
+int test2( void )
 {
     // no need to check for memory leaks, as the runTestSuite does that for you.
-
+    
     // here is where one implements the tests for generally a single testpoint.
-
+    
     return 0;  // the value that indicates success is part of the testDescription
 }
 
-int test3(void)
+int test3( void )
 {
     // no need to check for memory leaks, as the runTestSuite does that for you.
-
+    
     // here is where one implements the tests for generally a single testpoint.
-
+    
     return 0;  // the value that indicates success is part of the testDescription
 }
