Temporary disable FIPS OpenSSL test cases.

These seems to be cause by OpenSSL being broken by change in debugedit:

https://bugzilla.redhat.com/show_bug.cgi?id=2335414
This commit is contained in:
Vít Ondruch 2025-01-07 12:24:25 +01:00
commit 5f10b7c93e

View file

@ -1209,9 +1209,15 @@ MSPECOPTS=""
make -C %{_vpath_builddir} check TESTS="-v --show-skip $DISABLE_TESTS" MSPECOPT="-fs $MSPECOPTS"
# Run Ruby OpenSSL tests in OpenSSL FIPS.
# Temporary disable some test cases. OpenSSL currently looks to be broken by
# debugedit.
# https://bugzilla.redhat.com/show_bug.cgi?id=2335414
make -C %{_vpath_builddir} runruby TESTRUN_SCRIPT=" \
-I%{_builddir}/%{buildsubdir}/tool/lib --enable-gems \
%{SOURCE15} %{_builddir}/%{buildsubdir} --verbose"
%{SOURCE15} %{_builddir}/%{buildsubdir} --verbose \
-n '!/OpenSSL::TestFIPS#test_fips_mode_get_is_true_on_fips_mode_enabled/' \
-n '!/OpenSSL::TestFIPS#test_fips_mode_is_reentrant/' \
-n '!/OpenSSL::TestFIPS#test_fips_mode_get_with_fips_mode_set/'"
%{?with_bundler_tests:make -C %{_vpath_builddir} test-bundler-parallel}