Skip to content

Commit d1fe573

Browse files
committed
QUIC QLOG: Namespace the RUN_CI_TESTS variable
Reviewed-by: Matt Caswell <[email protected]> Reviewed-by: Neil Horman <[email protected]> (Merged from openssl#22037)
1 parent b58abf9 commit d1fe573

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ permissions:
2222
contents: read
2323

2424
env:
25-
RUN_CI_TESTS: 1
25+
OSSL_RUN_CI_TESTS: 1
2626

2727
jobs:
2828
check_update:

.github/workflows/run-checker-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
contents: read
1313

1414
env:
15-
RUN_CI_TESTS: 1
15+
OSSL_RUN_CI_TESTS: 1
1616

1717
jobs:
1818
run-checker:

test/recipes/70-test_quic_multistream.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ plan skip_all => "QUIC protocol is not supported by this OpenSSL build"
1818

1919
plan tests => 2;
2020

21-
if (!disabled('qlog') && $ENV{RUN_CI_TESTS} == "1") {
21+
if (!disabled('qlog') && $ENV{OSSL_RUN_CI_TESTS} == "1") {
2222
my $qlog_output = result_dir("qlog-output");
2323
print "# Writing qlog output to $qlog_output\n";
2424
rmtree($qlog_output, { safe => 1 });
@@ -34,7 +34,7 @@ ok(run(test(["quic_multistream_test",
3434

3535
SKIP: {
3636
skip "no qlog", 1 if disabled('qlog');
37-
skip "not running CI tests", 1 if $ENV{RUN_CI_TESTS} != "1";
37+
skip "not running CI tests", 1 if $ENV{OSSL_RUN_CI_TESTS} != "1";
3838

3939
subtest "check qlog output" => sub {
4040
plan tests => 1;

0 commit comments

Comments
 (0)