Index: /trunk/psLib/test/pstap/src/pstap.h
===================================================================
--- /trunk/psLib/test/pstap/src/pstap.h	(revision 10821)
+++ /trunk/psLib/test/pstap/src/pstap.h	(revision 10822)
@@ -15,12 +15,14 @@
 
            // write a comment which is counted as a test (and swallowed by prove)
-           # define note(A, ...) _gen_result(1, __func__, __FILE__, __LINE__, A, ## __VA_ARGS__);
+           # define note(A, ...){ \
+           fprintf(stdout, A, ## __VA_ARGS__); \
+           fprintf(stdout, "\n[%s:%d in %s]\n", __FILE__, __LINE__, __func__); }
+
+       // write a comment which is counted as a test (and swallowed by prove)
+       # define noted(A, ...) _gen_result(1, __func__, __FILE__, __LINE__, A, ## __VA_ARGS__);
 
 // use to test the value of a float
 # define ok_float(VALUE,EXPECT,COMMENT, ...)\
 ok((fabsf((VALUE)-(EXPECT)) < FLT_EPSILON), COMMENT, ## __VA_ARGS__);
-
-// write a comment which is counted as a test (and swallowed by prove)
-# define note(A, ...) _gen_result(1, __func__, __FILE__, __LINE__, A, ## __VA_ARGS__);
 
 // use to test the value of a double
@@ -73,5 +75,8 @@
 
 // write a comment which is counted as a test (and swallowed by prove)
-# define note(A, ...) _gen_result(1, __func__, __FILE__, __LINE__, A, ...);
+// write a comment which is counted as a test (and swallowed by prove)
+# define note(A, ...){ \
+    fprintf(stdout, A, ...); \
+    fprintf(stdout, "\n[%s:%d in %s]\n", __FILE__, __LINE__, __func__); }
 
 // use to test the value of a float
Index: /trunk/psLib/test/types/tap_psArguments_all.c
===================================================================
--- /trunk/psLib/test/types/tap_psArguments_all.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psArguments_all.c	(revision 10822)
@@ -23,5 +23,5 @@
 int main(void)
 {
-    plan_tests(30);
+    plan_tests(27);
 
     note("Tests for psArguments Functions");
Index: /trunk/psLib/test/types/tap_psArray_all.c
===================================================================
--- /trunk/psLib/test/types/tap_psArray_all.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psArray_all.c	(revision 10822)
@@ -24,5 +24,5 @@
 int main(void)
 {
-    plan_tests(34);
+    plan_tests(29);
 
     note("Tests for psArray Functions");
Index: /trunk/psLib/test/types/tap_psBitSet_all.c
===================================================================
--- /trunk/psLib/test/types/tap_psBitSet_all.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psBitSet_all.c	(revision 10822)
@@ -22,5 +22,5 @@
 int main(void)
 {
-    plan_tests(34);
+    plan_tests(31);
 
     note("Tests for psBitSet Functions");
Index: /trunk/psLib/test/types/tap_psHash_all.c
===================================================================
--- /trunk/psLib/test/types/tap_psHash_all.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psHash_all.c	(revision 10822)
@@ -23,5 +23,5 @@
 int main(void)
 {
-    plan_tests(29);
+    plan_tests(25);
 
     note("Tests for psHash Functions");
Index: /trunk/psLib/test/types/tap_psListIterator.c
===================================================================
--- /trunk/psLib/test/types/tap_psListIterator.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psListIterator.c	(revision 10822)
@@ -72,5 +72,5 @@
 int main (void)
 {
-    plan_tests(73);
+    plan_tests(66);
 
     note("psListIterator tests");
Index: /trunk/psLib/test/types/tap_psList_all.c
===================================================================
--- /trunk/psLib/test/types/tap_psList_all.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psList_all.c	(revision 10822)
@@ -26,5 +26,5 @@
 int main(void)
 {
-    plan_tests(64);
+    plan_tests(60);
 
     note("Tests for psList Functions");
Index: /trunk/psLib/test/types/tap_psLookupTable_all.c
===================================================================
--- /trunk/psLib/test/types/tap_psLookupTable_all.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psLookupTable_all.c	(revision 10822)
@@ -24,5 +24,5 @@
 int main(void)
 {
-    plan_tests(30);
+    plan_tests(28);
 
     note("Tests for psLookupTable Functions");
Index: /trunk/psLib/test/types/tap_psMetadataConfigParse_time.c
===================================================================
--- /trunk/psLib/test/types/tap_psMetadataConfigParse_time.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psMetadataConfigParse_time.c	(revision 10822)
@@ -7,5 +7,5 @@
 int main (void)
 {
-    plan_tests(41);
+    plan_tests(40);
 
     note("psMetadataParseConfig time format tests");
Index: /trunk/psLib/test/types/tap_psMetadataConfigRead.c
===================================================================
--- /trunk/psLib/test/types/tap_psMetadataConfigRead.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psMetadataConfigRead.c	(revision 10822)
@@ -148,5 +148,5 @@
 int main (void)
 {
-    plan_tests(58);
+    plan_tests(52);
 
     note("psMetadataConfigRead tests");
Index: /trunk/psLib/test/types/tap_psMetadataConfig_input.c
===================================================================
--- /trunk/psLib/test/types/tap_psMetadataConfig_input.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psMetadataConfig_input.c	(revision 10822)
@@ -25,5 +25,5 @@
 int main(void)
 {
-    plan_tests(36);
+    plan_tests(33);
 
     note("Tests for psMetadataConfig Input Functions");
Index: /trunk/psLib/test/types/tap_psMetadataItemCompare.c
===================================================================
--- /trunk/psLib/test/types/tap_psMetadataItemCompare.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psMetadataItemCompare.c	(revision 10822)
@@ -19,5 +19,5 @@
 int main (void)
 {
-    plan_tests(24);
+    plan_tests(22);
 
     note("psMetadataItemCompare() tests");
Index: /trunk/psLib/test/types/tap_psMetadataItemParse.c
===================================================================
--- /trunk/psLib/test/types/tap_psMetadataItemParse.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psMetadataItemParse.c	(revision 10822)
@@ -20,5 +20,5 @@
 int main (void)
 {
-    plan_tests(114);
+    plan_tests(112);
 
     note("psMetadataItemParse() tests");
Index: /trunk/psLib/test/types/tap_psMetadataIterator.c
===================================================================
--- /trunk/psLib/test/types/tap_psMetadataIterator.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psMetadataIterator.c	(revision 10822)
@@ -102,5 +102,5 @@
 int main (void)
 {
-    plan_tests(255);
+    plan_tests(242);
 
     note("psMetadataIterator tests");
Index: /trunk/psLib/test/types/tap_psMetadata_copying.c
===================================================================
--- /trunk/psLib/test/types/tap_psMetadata_copying.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psMetadata_copying.c	(revision 10822)
@@ -23,5 +23,5 @@
 int main(void)
 {
-    plan_tests(40);
+    plan_tests(36);
 
     note("psMetadataCopy and psMetadataItemCopy tests");
Index: /trunk/psLib/test/types/tap_psMetadata_creating.c
===================================================================
--- /trunk/psLib/test/types/tap_psMetadata_creating.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psMetadata_creating.c	(revision 10822)
@@ -25,5 +25,5 @@
 int main(void)
 {
-    plan_tests(46);
+    plan_tests(42);
 
     note("psMetadata & psMetadataItem Creation Functions");
Index: /trunk/psLib/test/types/tap_psMetadata_manip.c
===================================================================
--- /trunk/psLib/test/types/tap_psMetadata_manip.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psMetadata_manip.c	(revision 10822)
@@ -23,5 +23,5 @@
 int main(void)
 {
-    plan_tests(52);
+    plan_tests(48);
 
     note("psMetadataLookup, Remove, and Iterator Fxns");
Index: /trunk/psLib/test/types/tap_psMetadata_polynomials.c
===================================================================
--- /trunk/psLib/test/types/tap_psMetadata_polynomials.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psMetadata_polynomials.c	(revision 10822)
@@ -24,5 +24,5 @@
 int main(void)
 {
-    plan_tests(96);
+    plan_tests(89);
 
     note("psPolynomial(1D, 2D, 3D, & 4D)(to/from)Metadata tests");
Index: /trunk/psLib/test/types/tap_psMetadata_printing.c
===================================================================
--- /trunk/psLib/test/types/tap_psMetadata_printing.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psMetadata_printing.c	(revision 10822)
@@ -24,5 +24,5 @@
 int main(void)
 {
-    plan_tests(33);
+    plan_tests(30);
 
     note("psMetadataPrint and psMetadataItemPrint tests");
Index: /trunk/psLib/test/types/tap_psPixels_all.c
===================================================================
--- /trunk/psLib/test/types/tap_psPixels_all.c	(revision 10821)
+++ /trunk/psLib/test/types/tap_psPixels_all.c	(revision 10822)
@@ -23,5 +23,5 @@
 int main(void)
 {
-    plan_tests(41);
+    plan_tests(38);
 
     note("Tests for psPixels Functions");
