From 4860ed439605ded0964fad0ae7b43d0ae8600174 Mon Sep 17 00:00:00 2001 From: "Leonid S. Usov" Date: Tue, 30 Oct 2018 14:51:49 +0200 Subject: [tests] print test # from the start of the tests file to help with skip and take --- src/jq_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jq_test.c b/src/jq_test.c index 2b40d4d6..eed633f4 100644 --- a/src/jq_test.c +++ b/src/jq_test.c @@ -75,7 +75,7 @@ static void run_jq_tests(jv lib_dirs, int verbose, FILE *testdata, int skip, int int check_msg = 0; jq_state *jq = NULL; - int tests_to_skip = skip; + int tests_to_skip = skip > 0 ? skip : 0; int tests_to_take = take; jq = jq_init(); @@ -123,9 +123,9 @@ static void run_jq_tests(jv lib_dirs, int verbose, FILE *testdata, int skip, int break; } - printf("Testing '%s' at line number %u\n", prog, lineno); int pass = 1; tests++; + printf("Test #%d: '%s' at line number %u\n", tests + tests_to_skip, prog, lineno); int compiled = jq_compile(jq, prog); if (must_fail) { @@ -223,7 +223,7 @@ static void run_jq_tests(jv lib_dirs, int verbose, FILE *testdata, int skip, int } jq_teardown(&jq); - int total_skipped = tests_to_skip > 0 ? tests_to_skip : 0; + int total_skipped = tests_to_skip; if (skip > 0) { total_skipped = tests_to_skip - skip; -- cgit v1.2.3