[Expat-checkins] expat/tests minicheck.c,1.3,1.4
Fred L. Drake
fdrake at users.sourceforge.net
Fri Jan 28 17:16:17 CET 2005
Update of /cvsroot/expat/expat/tests
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15751
Modified Files:
minicheck.c
Log Message:
make errors reported display more like GCC error messages, so editors
like Emacs can provide functions like "go to next error", etc.
Index: minicheck.c
===================================================================
RCS file: /cvsroot/expat/expat/tests/minicheck.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- minicheck.c 28 Jan 2005 06:32:30 -0000 1.3
+++ minicheck.c 28 Jan 2005 16:16:14 -0000 1.4
@@ -108,8 +108,8 @@
{
runner->nfailures++;
if (verbosity >= CK_VERBOSE) {
- printf("%s:%s:%d\n", _check_current_function,
- _check_current_filename, _check_current_lineno);
+ printf("%s:%d: %s\n", _check_current_filename,
+ _check_current_lineno, _check_current_function);
}
}
More information about the Expat-checkins
mailing list