QUIC QLOG: Namespace the RUN_CI_TESTS variable

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22037)
This commit is contained in:
Hugo Landau 2024-02-01 11:01:44 +00:00
parent b58abf9822
commit d1fe5738d3
3 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ permissions:
contents: read
env:
RUN_CI_TESTS: 1
OSSL_RUN_CI_TESTS: 1
jobs:
check_update:

View File

@ -12,7 +12,7 @@ permissions:
contents: read
env:
RUN_CI_TESTS: 1
OSSL_RUN_CI_TESTS: 1
jobs:
run-checker:

View File

@ -18,7 +18,7 @@ plan skip_all => "QUIC protocol is not supported by this OpenSSL build"
plan tests => 2;
if (!disabled('qlog') && $ENV{RUN_CI_TESTS} == "1") {
if (!disabled('qlog') && $ENV{OSSL_RUN_CI_TESTS} == "1") {
my $qlog_output = result_dir("qlog-output");
print "# Writing qlog output to $qlog_output\n";
rmtree($qlog_output, { safe => 1 });
@ -34,7 +34,7 @@ ok(run(test(["quic_multistream_test",
SKIP: {
skip "no qlog", 1 if disabled('qlog');
skip "not running CI tests", 1 if $ENV{RUN_CI_TESTS} != "1";
skip "not running CI tests", 1 if $ENV{OSSL_RUN_CI_TESTS} != "1";
subtest "check qlog output" => sub {
plan tests => 1;