diff options
author | serg@serg.mylan <> | 2006-06-17 16:20:39 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2006-06-17 16:20:39 +0200 |
commit | 48c453a40b8a1eac14b0bf2284a6257f6f2166a2 (patch) | |
tree | 1ed4d5cf639665eb2901d57998183b18637eab1a /unittest/mytap | |
parent | 694c1db79a931dc12a7cff7a3d077098912f5873 (diff) | |
download | mariadb-git-48c453a40b8a1eac14b0bf2284a6257f6f2166a2.tar.gz |
atomic ops:
my_atomic_XX_t -> intXX, no implicit locking anymore
simplified framework, support for requested cleanups
Diffstat (limited to 'unittest/mytap')
-rw-r--r-- | unittest/mytap/tap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittest/mytap/tap.c b/unittest/mytap/tap.c index 2b728670cea..d3f5013b4c9 100644 --- a/unittest/mytap/tap.c +++ b/unittest/mytap/tap.c @@ -199,8 +199,8 @@ int exit_status() { if (g_test.plan != g_test.last) { - diag("%d tests planned but only %d executed", - g_test.plan, g_test.last); + diag("%d tests planned but%s %d executed", + g_test.plan, (g_test.plan > g_test.last ? " only" : ""), g_test.last); return EXIT_FAILURE; } |