From 3b6bb763d46c0896a2706a114a7fb0712bba8eae Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Tue, 6 Feb 2024 12:07:59 +0000 Subject: [PATCH] QUIC MULTISTREAM TEST: Fix perl warning around envvars Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/23495) --- test/recipes/70-test_quic_multistream.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/recipes/70-test_quic_multistream.t b/test/recipes/70-test_quic_multistream.t index 2e662cd5c5c..6ee8f3feb2c 100644 --- a/test/recipes/70-test_quic_multistream.t +++ b/test/recipes/70-test_quic_multistream.t @@ -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{OSSL_RUN_CI_TESTS} != "1"; + skip "not running CI tests", 1 if ($ENV{OSSL_RUN_CI_TESTS} // "") ne "1"; subtest "check qlog output" => sub { plan tests => 1; -- 2.47.2