Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mingw-w64-openssl: update to 3.1.4 #96

Merged
merged 2 commits into from
Oct 25, 2023
Merged

mingw-w64-openssl: update to 3.1.4 #96

merged 2 commits into from
Oct 25, 2023

Commits on Oct 24, 2023

  1. mingw-w64-openssl: update to 3.1.4

    Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
    dscho committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    fb9fc20 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. openssl: fix 05-test_rand

    As of OpenSSL v3.1.4, there is a pair of new test failures in
    05-test_rand. The symptom looks like this:
    
    	Engine "ossltest" set.
    	../../util/wrap.pl ../../apps/openssl.exe rand -engine ossltest -hex 16 => 0
    	not ok 4 - rand with ossltest: Check rand output is as expected
    
    	#   Failed test 'rand with ossltest: Check rand output is as expected'
    	#   at ../openssl-3.1.4/test/recipes/05-test_rand.t line 32.
    	Engine "dasync" set.
    	../../util/wrap.pl ../../apps/openssl.exe rand -engine dasync -hex 16 => 0
    	not ok 5 - rand with dasync: Check rand output is of expected length
    
    The two failing tests both spawn an engine, which by virtue of being
    MINGW `.dll` files use CR/LF when printing to `stdout`. To accommodate
    for that, use the same "better chomp" as elsewhere in OpenSSL's source
    code.
    
    Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
    dscho committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    87bfbed View commit details
    Browse the repository at this point in the history