Author: randyk
Date: Tue Jul 19 06:36:15 2005
New Revision: 219682
URL: http://svn.apache.org/viewcvs?rev=219682&view=rev
Log:
have AT_skip() print "ok ...", rather than "not ok ...".
Modified:
httpd/apreq/trunk/library/t/at.h
Modified: httpd/apreq/trunk/library/t/at.h
URL:
http://svn.apache.org/viewcvs/httpd/apreq/trunk/library/t/at.h?rev=219682&r1=219681&r2=219682&view=diff
==============================================================================
--- httpd/apreq/trunk/library/t/at.h (original)
+++ httpd/apreq/trunk/library/t/at.h Tue Jul 19 06:36:15 2005
@@ -248,7 +248,7 @@
char buf[256];
while (n-- > 0) {
++t->current;
- apr_snprintf(buf, 256, "not ok %d - %s (%d) #skipped: %s (%s:%d)",
+ apr_snprintf(buf, 256, "ok %d - %s (%d) #skipped: %s (%s:%d)",
t->current + t->prior, t->name, t->current, reason, file,
line);
at_report(t, buf);
}