summaryrefslogtreecommitdiff
path: root/lib/igt_core.c
diff options
context:
space:
mode:
authorPetri Latvala <petri.latvala@intel.com>2018-08-08 14:06:57 +0300
committerPetri Latvala <petri.latvala@intel.com>2018-08-09 10:33:19 +0300
commit6a02badf89dfc09776117b90f1b7c36b02bfe54c (patch)
tree7bd6150f16254cc56b102fd03aba3c4379a5abb3 /lib/igt_core.c
parente6ddaca7a8ea9d3d27f0ecaa36b357cc02e2df3b (diff)
lib: Print subtest starting/ending line to stderr too
when instructed via the environment. This is needed for the new test runner to properly assign stderr output to the correct subtest. v2: Print the subtest result from skip_subtests_henceforth handling also to stderr. Signed-off-by: Petri Latvala <petri.latvala@intel.com> Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Diffstat (limited to 'lib/igt_core.c')
-rw-r--r--lib/igt_core.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/lib/igt_core.c b/lib/igt_core.c
index 5e6fb7ad..d3385756 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -301,6 +301,8 @@ GKeyFile *igt_key_file;
char *igt_frame_dump_path;
+static bool stderr_needs_sentinel = false;
+
const char *igt_test_name(void)
{
return command_str;
@@ -643,6 +645,8 @@ static void common_init_env(void)
}
igt_frame_dump_path = getenv("IGT_FRAME_DUMP_PATH");
+
+ stderr_needs_sentinel = getenv("IGT_SENTINEL_ON_STDERR") != NULL;
}
static int common_init(int *argc, char **argv,
@@ -919,12 +923,20 @@ bool __igt_run_subtest(const char *subtest_name)
(!__igt_plain_output) ? "\x1b[1m" : "", subtest_name,
skip_subtests_henceforth == SKIP ?
"SKIP" : "FAIL", (!__igt_plain_output) ? "\x1b[0m" : "");
+ fflush(stdout);
+ if (stderr_needs_sentinel)
+ fprintf(stderr, "Subtest %s: %s\n", subtest_name,
+ skip_subtests_henceforth == SKIP ?
+ "SKIP" : "FAIL");
return false;
}
igt_kmsg(KMSG_INFO "%s: starting subtest %s\n",
command_str, subtest_name);
- igt_debug("Starting subtest: %s\n", subtest_name);
+ igt_info("Starting subtest: %s\n", subtest_name);
+ fflush(stdout);
+ if (stderr_needs_sentinel)
+ fprintf(stderr, "Starting subtest: %s\n", subtest_name);
_igt_log_buffer_reset();
@@ -979,6 +991,9 @@ static void exit_subtest(const char *result)
in_subtest, result, time_elapsed(&subtest_time, &now),
(!__igt_plain_output) ? "\x1b[0m" : "");
fflush(stdout);
+ if (stderr_needs_sentinel)
+ fprintf(stderr, "Subtest %s: %s (%.3fs)\n",
+ in_subtest, result, time_elapsed(&subtest_time, &now));
igt_terminate_spin_batches();