From: Viktor Dukhovni Date: Sun, 5 Jun 2016 15:13:34 +0000 (-0400) Subject: Silence misleading test_abort stderr output X-Git-Tag: OpenSSL_1_1_0-pre6~546 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=501d53c60091fdc8ed6ab1aa5ad96a71425d8dfd;p=oweals%2Fopenssl.git Silence misleading test_abort stderr output Reviewed-by: Rich Salz --- diff --git a/test/recipes/01-test_abort.t b/test/recipes/01-test_abort.t index 2f121e25bf..a6a7f3151a 100644 --- a/test/recipes/01-test_abort.t +++ b/test/recipes/01-test_abort.t @@ -13,4 +13,5 @@ setup("test_abort"); plan tests => 1; +open STDERR, ">", "/dev/null"; is(run(test(["aborttest"])), 0, "Testing that abort is caught correctly");