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:
parent
b58abf9822
commit
d1fe5738d3
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -22,7 +22,7 @@ permissions:
|
||||
contents: read
|
||||
|
||||
env:
|
||||
RUN_CI_TESTS: 1
|
||||
OSSL_RUN_CI_TESTS: 1
|
||||
|
||||
jobs:
|
||||
check_update:
|
||||
|
2
.github/workflows/run-checker-ci.yml
vendored
2
.github/workflows/run-checker-ci.yml
vendored
@ -12,7 +12,7 @@ permissions:
|
||||
contents: read
|
||||
|
||||
env:
|
||||
RUN_CI_TESTS: 1
|
||||
OSSL_RUN_CI_TESTS: 1
|
||||
|
||||
jobs:
|
||||
run-checker:
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user