From 38ff09cab36c46e9d74e1add63cdc584ac54044e Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 8 Oct 2014 17:47:43 -0400 Subject: [PATCH] Modified CuTest.c::CuTestRun() so that it prints the name of the tests conducted. Signed-off-by: unknown --- dynarrc/CuTest.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dynarrc/CuTest.c b/dynarrc/CuTest.c index f2025ba..86273d8 100644 --- a/dynarrc/CuTest.c +++ b/dynarrc/CuTest.c @@ -144,6 +144,7 @@ void CuTestRun(CuTest* tc) { // added by Saad printf("Test: %s\n", tc->name); + tc->ran = 1; (tc->function)(tc); }