Index: trunk/psLib/test/pstap/src/pstap.h
===================================================================
--- trunk/psLib/test/pstap/src/pstap.h	(revision 10816)
+++ trunk/psLib/test/pstap/src/pstap.h	(revision 10818)
@@ -14,7 +14,13 @@
            # ifdef __GNUC__
 
-           // 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 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
@@ -65,4 +71,7 @@
 
 #elif __STDC_VERSION__ >= 199901L /* __GNUC__ */
+
+// write a comment which is counted as a test (and swallowed by prove)
+# define note(A, ...) _gen_result(1, __func__, __FILE__, __LINE__, A, ...);
 
 // use to test the value of a float
