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
The evp_pkey_provided_test randomly fails sometimes. It occurs because it dumps PEM files to stdout. If those PEM files happen to contain a line that starts with the text "ok" then it confuses the test harness and the test fails.
This is really a generic problem. The test programs should really treat any output that isn't TAP specific as commentary, i.e. ensure that it's prefixed with a #. I have an idea on how to do that right, coming up.
levitte
added a commit
to levitte/openssl
that referenced
this issue
Jun 5, 2020
Output that's supposed to be understood by a TAP parser gets its own
BIOs (|tap_out| and |tap_err|), and is only used internally within
testutils. |bio_out| and |bio_err| is now only used for output that
shouldn't be parsed by the TAP parser, and all output written to those
BIOs are therefore always made to look like comments (it gets prefixed
with "# ").
Indentation and prefixing with "# " is reworked to use BIO_f_prefix(),
which allows us to throw away the internal BIO_f_tap().
The indentation level is now adjusted via a special function.
Fixesopenssl#12054
levitte
added a commit
to levitte/openssl
that referenced
this issue
Jun 5, 2020
The evp_pkey_provided_test randomly fails sometimes. It occurs because it dumps PEM files to stdout. If those PEM files happen to contain a line that starts with the text "ok" then it confuses the test harness and the test fails.
Example failing build:
https://travis-ci.org/github/openssl/openssl/jobs/694280520
The text was updated successfully, but these errors were encountered: