summaryrefslogtreecommitdiffstats
path: root/test/recipes/70-test_quic_multistream.t
diff options
context:
space:
mode:
Diffstat (limited to 'test/recipes/70-test_quic_multistream.t')
-rw-r--r--test/recipes/70-test_quic_multistream.t19
1 files changed, 2 insertions, 17 deletions
diff --git a/test/recipes/70-test_quic_multistream.t b/test/recipes/70-test_quic_multistream.t
index 7257ca0938..abaeed8e58 100644
--- a/test/recipes/70-test_quic_multistream.t
+++ b/test/recipes/70-test_quic_multistream.t
@@ -16,10 +16,10 @@ setup("test_quic_multistream");
plan skip_all => "QUIC protocol is not supported by this OpenSSL build"
if disabled('quic');
-plan tests => 3;
+plan tests => 2;
my $qlog_output;
-if (!disabled('qlog') && $ENV{OSSL_RUN_CI_TESTS} == "1") {
+if (!disabled('qlog')) {
$qlog_output = result_dir("qlog-output");
print "# Writing qlog output to $qlog_output\n";
rmtree($qlog_output, { safe => 1 });
@@ -44,18 +44,3 @@ SKIP: {
"running qlog verification script");
};
}
-
-SKIP: {
- skip "no qlog", 1 if disabled('qlog');
- skip "not running CI tests", 1 unless $ENV{OSSL_RUN_CI_TESTS};
- skip "not running artifacts upload", 1 unless $ENV{OSSL_CI_ARTIFACTS_PATH};
-
- subtest "copy qlog artifacts to upload directory" => sub {
- plan tests => 1;
-
- my $artifacts_path = $ENV{OSSL_CI_ARTIFACTS_PATH};
- mkpath("${artifacts_path}/quic_multistream_test");
- ok(run(cmd(["mv", "--", $qlog_output,
- "${artifacts_path}/quic_multistream_test/"])));
- };
-}