Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-12-06 13:58:13 +0300
committerRichard Levitte <levitte@openssl.org>2000-12-06 13:58:13 +0300
commit322006dcb1c415c80c2a7fc778333dd8c4eb1677 (patch)
treed8cafcb242c43c7860657ee91a91e9acbd6a22ac /util/selftest.pl
parentdb01d55671933c6675aac2936e962ab621620355 (diff)
During the self test, we only want to know what bctest says on
stderr...
Diffstat (limited to 'util/selftest.pl')
-rw-r--r--util/selftest.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/selftest.pl b/util/selftest.pl
index fabf366995..00e95bdefa 100644
--- a/util/selftest.pl
+++ b/util/selftest.pl
@@ -138,7 +138,7 @@ if (/no-/)
goto err;
}
-if (`echo 4+1 | bc` != 5 || (system("sh test/bctest") >> 8) != 0)
+if (`echo 4+1 | bc` != 5 || (system("sh test/bctest >/dev/null") >> 8) != 0)
{
print OUT "Can't run bc! Test skipped.\n";
print OUT $not_our_fault;