X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Futils%2Ftap%2Ftap.c;h=687ea22f28a9adf7f787dc473b5313d1da129cf3;hb=83dc3923fa4b0fc2e0ad091392aea64cac046498;hp=c92c14140e4404b5e506d3571e9029715b8863d2;hpb=6a0d31b579259f816552bae74109ffb204d76b01;p=lttng-tools.git diff --git a/tests/utils/tap/tap.c b/tests/utils/tap/tap.c index c92c14140..687ea22f2 100644 --- a/tests/utils/tap/tap.c +++ b/tests/utils/tap/tap.c @@ -185,16 +185,16 @@ void _tap_init(void) setbuf(stdout, 0); /* - * Check if the TAP_AUTOTIME environment variable is set and - * contains at least one byte. + * Check if the LTTNG_TESTS_TAP_AUTOTIME environment variable + * is set and contains at least one byte. */ - const char *autotime_env = getenv("TAP_AUTOTIME"); + const char *autotime_env = getenv("LTTNG_TESTS_TAP_AUTOTIME"); if (autotime_env != NULL && strnlen(autotime_env, 1)) { int tap_autotime; /* - * Check if TAP_AUTOTIME is '0', also check errno - * because strtol() can return '0' on error. + * Check if LTTNG_TESTS_TAP_AUTOTIME is '0', also check + * errno because strtol() can return '0' on error. */ errno = 0; tap_autotime = strtol(autotime_env, NULL, 10);