3.11.0-25 - When building scl only run nonexp-regtest.

This commit is contained in:
Mark Wielaard 2016-07-22 17:02:57 +02:00
parent 44e3e20507
commit 23303a6785

View File

@ -481,11 +481,16 @@ make %{?_smp_mflags} CFLAGS="" check || :
echo ===============TESTING=================== echo ===============TESTING===================
# On arm the gdb integration tests hang for unknown reasons. # On arm the gdb integration tests hang for unknown reasons.
# When building a scl we might pick a bad gdb.
# Only run the main tools tests. # Only run the main tools tests.
%ifarch %{arm} %ifarch %{arm}
./close_fds make nonexp-regtest || : ./close_fds make nonexp-regtest || :
%else %else
./close_fds make regtest || : %if %{is_scl}
./close_fds make nonexp-regtest || :
%else
./close_fds make regtest || :
%endif
%endif %endif
# Make sure test failures show up in build.log # Make sure test failures show up in build.log