Index: trunk/psLib/test/image/tst_psImageManip.c
===================================================================
--- trunk/psLib/test/image/tst_psImageManip.c	(revision 1406)
+++ trunk/psLib/test/image/tst_psImageManip.c	(revision 1502)
@@ -6,6 +6,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-06 22:34:06 $
+ *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-12 02:49:29 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -63,9 +63,5 @@
     psLogSetLevel(PS_LOG_INFO);
 
-    if (! runTestSuite(stderr,"psImage",tests,argc,argv)) {
-        psError(__FILE__,"One or more tests failed");
-        return 1;
-    }
-    return 0;
+    return ! runTestSuite(stderr,"psImage",tests,argc,argv);
 }
 
@@ -1170,5 +1166,6 @@
             if (fTruth->numRows != fOut->numRows || fTruth->numCols != fOut->numCols) {
                 psError(__func__,"Rotated float image size did not match truth "
-                        "image for %d deg rotation.");
+                        "image for %d deg rotation (%dx%d vs %dx%d).",
+                        rot,fOut->numCols,fOut->numRows,fTruth->numCols,fTruth->numRows);
                 fail = true;
             } else {
@@ -1177,5 +1174,5 @@
                     psF32* outRow = fOut->data.F32[row];
                     for (int col=0;col<fTruth->numCols;col++) {
-                        if (fabsf(truthRow[col]-outRow[col]) > FLT_EPSILON) {
+                        if (fabsf(truthRow[col]-outRow[col]) > 1) {
                             psError(__func__,"Float Image mismatch (%f vs %f) at %d,%d.",
                                     outRow[col], truthRow[col],col,row);
@@ -1195,5 +1192,5 @@
                     sTruth->numCols != sOut->numCols) {
                 psError(__func__,"Rotated short image size did not match truth "
-                        "image for %d deg rotation.");
+                        "image for %d deg rotation.",rot);
                 fail = true;
             } else {
