Skip to content

Commit

Permalink
QUIC QLOG: Namespace the RUN_CI_TESTS variable
Browse files Browse the repository at this point in the history
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
(Merged from openssl#22037)
  • Loading branch information
hlandau authored and Sashan committed Feb 12, 2024
1 parent ebeb5f3 commit 66af6e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ permissions:
contents: read

env:
RUN_CI_TESTS: 1
OSSL_RUN_CI_TESTS: 1

jobs:
check_update:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-checker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
contents: read

env:
RUN_CI_TESTS: 1
OSSL_RUN_CI_TESTS: 1

jobs:
run-checker:
Expand Down
4 changes: 2 additions & 2 deletions test/recipes/70-test_quic_multistream.t
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
Expand All @@ -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;
Expand Down

0 comments on commit 66af6e5

Please sign in to comment.