mirror of https://github.com/openssl/openssl.git
fixup! add a handshake memory failure test
This commit is contained in:
parent
6381b6ddcc
commit
63b2a20dd5
|
@ -33,7 +33,9 @@ run(test(["handshake-memfail", "count", srctop_dir("test", "certs")], stderr =>
|
||||||
#
|
#
|
||||||
# Read the result file into an array
|
# Read the result file into an array
|
||||||
#
|
#
|
||||||
my @lines = `cat "$resultdir/countinfo.txt"`;
|
open my $handle, '<', "$resultdir/countinfo.txt";
|
||||||
|
chomp(my @lines = <$handle>);
|
||||||
|
close $handle;
|
||||||
|
|
||||||
#
|
#
|
||||||
# some line contains our counts, find and split that into an array
|
# some line contains our counts, find and split that into an array
|
||||||
|
|
Loading…
Reference in New Issue