From: Richard Levitte Date: Wed, 12 Feb 2020 23:28:02 +0000 (+0100) Subject: TEST: Modify test/recipes/20-test_enc.t to leave artifacts behind X-Git-Tag: openssl-3.0.0-alpha1~443 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1cf959316894ab2a1111806803a2bed30f46bf30;p=oweals%2Fopenssl.git TEST: Modify test/recipes/20-test_enc.t to leave artifacts behind Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/11080) --- diff --git a/test/recipes/20-test_enc.t b/test/recipes/20-test_enc.t index 50e7463c06..b4a8e01878 100644 --- a/test/recipes/20-test_enc.t +++ b/test/recipes/20-test_enc.t @@ -62,9 +62,6 @@ plan tests => 2 + (scalar @ciphers)*2; ok(run(app([$cmd, @e, "-in", $test, "-out", $cipherfile])) && run(app([$cmd, @d, "-in", $cipherfile, "-out", $clearfile])) && compare_text($test,$clearfile) == 0, $t); - unlink $cipherfile, $clearfile; } } } - -unlink $test;