Index: trunk/psLib/test/pstap/src/pstap.h
===================================================================
--- trunk/psLib/test/pstap/src/pstap.h	(revision 10818)
+++ 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
