diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/test.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/common/test.c b/common/test.c index 122e78a..b6ad012 100644 --- a/common/test.c +++ b/common/test.c @@ -200,6 +200,7 @@ p11_test_run (int argc, test_item *next; int count; int ret = 0; + int setup; /* p11-kit specific stuff */ putenv ("P11_KIT_STRICT=1"); @@ -229,20 +230,27 @@ p11_test_run (int argc, assert (item->type == TEST); gl.last = item; gl.number++; + setup = 0; if (setjmp (gl.jump) == 0) { if (fixture && fixture->x.fix.setup) (fixture->x.fix.setup) (item->x.test.argument); + setup = 1; + assert (item->x.test.func); (item->x.test.func)(item->x.test.argument); - if (fixture && fixture->x.fix.teardown) - (fixture->x.fix.teardown) (item->x.test.argument); - printf ("ok %d %s\n", gl.number, item->x.test.name); } + if (setup) { + if (setjmp (gl.jump) == 0) { + if (fixture && fixture->x.fix.teardown) + (fixture->x.fix.teardown) (item->x.test.argument); + } + } + gl.last = NULL; } |