You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In all.sh's component_test_cmake_out_of_source we run ssl-opt.sh and ensure it doesn't output anything on stderr:
# Also ensure that there are no error messages such as
# "No such file or directory", which would indicate that some required
# file is missing (ssl-opt.sh tolerates the absence of some files so
# may exit with status 0 but emit errors).
./tests/ssl-opt.sh -f 'Default' >ssl-opt.out 2>ssl-opt.err
grep PASS ssl-opt.out
cat ssl-opt.err >&2
# If ssl-opt.err is non-empty, record an error and keep going.
[ ! -s ssl-opt.err ]
However sometimes stderr will contain a line like ./tests/ssl-opt.sh: 1273: kill: No such process which is quite harmless. Ideally such lines would be ignored.
In
all.sh
'scomponent_test_cmake_out_of_source
we runssl-opt.sh
and ensure it doesn't output anything on stderr:However sometimes
stderr
will contain a line like./tests/ssl-opt.sh: 1273: kill: No such process
which is quite harmless. Ideally such lines would be ignored.Log of it happening on the CI
The text was updated successfully, but these errors were encountered: