Index: trunk/psLib/test/math/tap_psMatrix02.c
===================================================================
--- trunk/psLib/test/math/tap_psMatrix02.c	(revision 12431)
+++ trunk/psLib/test/math/tap_psMatrix02.c	(revision 13124)
@@ -12,6 +12,6 @@
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2007-03-14 00:39:51 $
+ *  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2007-05-02 04:20:06 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -24,11 +24,14 @@
 #include "pstap.h"
 
-psS32 main(psS32 argc,
-           char* argv[])
+int main(psS32 argc,
+         char* argv[])
 {
     psLogSetFormat("HLNM");
     plan_tests(11);
 
-    // Test A - Input pointer same as output pointer
+    // Input pointer same as output pointer
+    // XXX: This results in a seg fault.  It's not clear that passing this test is
+    // a requirement.  However, we should probably fix the case where the input
+    // image equals the output image.
     if (0) {
         psMemId id = psMemGetId();
@@ -40,5 +43,7 @@
     }
 
-    // Test B - Null input psImage
+
+    // Null input psImage
+    // Merge with tap_psMatrix01.c, get rid of this test (redundant)
     {
         psMemId id = psMemGetId();
@@ -52,5 +57,7 @@
     }
 
-    // Test C - Incorrect type for input pointer
+
+    // Incorrect type for input pointer
+    // Merge with tap_psMatrix01.c, get rid of this test (redundant)
     {
         psMemId id = psMemGetId();
@@ -65,5 +72,6 @@
     }
 
-    // Test D - Incorrect type for output pointer
+
+    // Incorrect type for output pointer
     {
         psMemId id = psMemGetId();
@@ -79,5 +87,6 @@
     }
 
-    // Test E - Matrix not square for output pointer
+
+    // Matrix not square for output pointer
     // XXX: We should probably do more here.
     {
@@ -90,4 +99,3 @@
         ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
     }
-    return 0;
 }
