QUIC QLOG: Namespace the RUN_CI_TESTS variable
authorHugo Landau <hlandau@openssl.org>
Thu, 1 Feb 2024 11:01:44 +0000 (11:01 +0000)
committerHugo Landau <hlandau@openssl.org>
Fri, 2 Feb 2024 11:50:30 +0000 (11:50 +0000)
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22037)

.github/workflows/ci.yml
.github/workflows/run-checker-ci.yml
test/recipes/70-test_quic_multistream.t

index fdf76c77f8e22e16cb724b7585f194364a87f123..da6c7860abb9c5fea62f638292078e288b6547a3 100644 (file)
@@ -22,7 +22,7 @@ permissions:
   contents: read
 
 env:
-  RUN_CI_TESTS: 1
+  OSSL_RUN_CI_TESTS: 1
 
 jobs:
   check_update:
index 991bb4ff73f210e37200f0ea2e70ea8750ff0f21..1fbc3e708a843cddf3c05cd3d2f7144a688d686e 100644 (file)
@@ -12,7 +12,7 @@ permissions:
   contents: read
 
 env:
-  RUN_CI_TESTS: 1
+  OSSL_RUN_CI_TESTS: 1
 
 jobs:
   run-checker:
index 4e72cef95672a190e4efa129882ea7f0e5c66e91..2e662cd5c5c2cd42105adce80a90ddf0a676cd2c 100644 (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;