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
|
contents: read
|
||||||
|
|
||||||
env:
|
env:
|
||||||
RUN_CI_TESTS: 1
|
OSSL_RUN_CI_TESTS: 1
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check_update:
|
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
|
contents: read
|
||||||
|
|
||||||
env:
|
env:
|
||||||
RUN_CI_TESTS: 1
|
OSSL_RUN_CI_TESTS: 1
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run-checker:
|
run-checker:
|
||||||
|
@ -18,7 +18,7 @@ plan skip_all => "QUIC protocol is not supported by this OpenSSL build"
|
|||||||
|
|
||||||
plan tests => 2;
|
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");
|
my $qlog_output = result_dir("qlog-output");
|
||||||
print "# Writing qlog output to $qlog_output\n";
|
print "# Writing qlog output to $qlog_output\n";
|
||||||
rmtree($qlog_output, { safe => 1 });
|
rmtree($qlog_output, { safe => 1 });
|
||||||
@ -34,7 +34,7 @@ ok(run(test(["quic_multistream_test",
|
|||||||
|
|
||||||
SKIP: {
|
SKIP: {
|
||||||
skip "no qlog", 1 if disabled('qlog');
|
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 {
|
subtest "check qlog output" => sub {
|
||||||
plan tests => 1;
|
plan tests => 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user