[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Pspp-cvs] pspp/src/language/tests datasheet-test.c [simpler-proc]
From: |
Ben Pfaff |
Subject: |
[Pspp-cvs] pspp/src/language/tests datasheet-test.c [simpler-proc] |
Date: |
Sat, 14 Apr 2007 23:03:23 +0000 |
CVSROOT: /cvsroot/pspp
Module name: pspp
Branch: simpler-proc
Changes by: Ben Pfaff <blp> 07/04/14 23:03:23
Modified files:
src/language/tests: datasheet-test.c
Log message:
Improve output message text.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/tests/datasheet-test.c?cvsroot=pspp&only_with_tag=simpler-proc&r1=1.1.2.1&r2=1.1.2.2
Patches:
Index: datasheet-test.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/tests/Attic/datasheet-test.c,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -b -r1.1.2.1 -r1.1.2.2
--- datasheet-test.c 14 Apr 2007 05:04:23 -0000 1.1.2.1
+++ datasheet-test.c 14 Apr 2007 23:03:23 -0000 1.1.2.2
@@ -82,6 +82,9 @@
}
ok = check_model (lexer, datasheet_test, ¶ms);
- fprintf (stderr, "Datasheet test %s.\n", ok ? "successful" : "failed");
+ printf ("Datasheet test max(%d,%d) backing(%d,%d) %s.\n",
+ params.max_rows, params.max_cols,
+ params.backing_rows, params.backing_cols,
+ ok ? "successful" : "failed");
return ok ? lex_end_of_command (lexer) : CMD_FAILURE;
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Pspp-cvs] pspp/src/language/tests datasheet-test.c [simpler-proc],
Ben Pfaff <=