Index: trunk/Ohana/src/libfits/test/imagecomp.c
===================================================================
--- trunk/Ohana/src/libfits/test/imagecomp.c	(revision 39457)
+++ trunk/Ohana/src/libfits/test/imagecomp.c	(revision 41474)
@@ -3,10 +3,13 @@
 # include "tap_ohana.h"
 
+# define MEM_VERBOSE FALSE
+
 int test_compress (int bitpix, char *zcmptype);
 int test_compress_fullrange (int bitpix, char *zcmptype);
 int test_compress_fulltile (int bitpix, char *zcmptype);
 
-// char *cmptype[] = {"NONE", "NONE_2", "GZIP_1", "GZIP_2", "PLIO_1", "RICE_1", "RICE_ONE", "HCOMPRESS_1", NULL};
+// XXX FULL SET : char *cmptype[] = {"NONE", "NONE_2", "GZIP_1", "GZIP_2", "PLIO_1", "RICE_1", "RICE_ONE", "HCOMPRESS_1", NULL};
 char *cmptype[] = {"NONE", "NONE_1", "NONE_2", "GZIP_1", "GZIP_2", "RICE_1", "RICE_ONE", NULL};
+// XXX NOT WORKING: char *cmptype[] = {"HCOMPRESS_1", NULL};
 int bitpix[] = {8, 16, 32, -32, -64, 0};
 
@@ -31,5 +34,5 @@
       test_compress_fulltile (bitpix[j], cmptype[i]);
       test_compress_fullrange (bitpix[j], cmptype[i]);
-      ok (ohana_memcheck (TRUE), "no memory corruption");
+      ok (ohana_memcheck (MEM_VERBOSE), "no memory corruption");
     }
   }
@@ -43,5 +46,5 @@
       test_compress_fulltile (bitpix[j], cmptype[i]);
       test_compress_fullrange (bitpix[j], cmptype[i]);
-      ok (ohana_memcheck (TRUE), "no memory corruption");
+      ok (ohana_memcheck (MEM_VERBOSE), "no memory corruption");
     }
   }
@@ -55,5 +58,5 @@
       test_compress_fulltile (bitpix[j], cmptype[i]);
       test_compress_fullrange (bitpix[j], cmptype[i]);
-      ok (ohana_memcheck (TRUE), "no memory corruption");
+      ok (ohana_memcheck (MEM_VERBOSE), "no memory corruption");
     }
   }
@@ -138,4 +141,5 @@
   }     
   
+  // diag ("--- Image has a total of %d pixels of which %d are bad ---", NX*NY, Nbad);
   ok (!Nbad, "all image pixels match");
 
