From a971d071bf1416d4b91be1772c7385f580f1a971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 11 Jun 2020 15:36:55 +0200 Subject: [PATCH] Workaround: Skip test_gdb on arm Tracked in https://bugzilla.redhat.com/show_bug.cgi?id=1846390 --- python3.9.spec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python3.9.spec b/python3.9.spec index 730a2d7..c800a5f 100644 --- a/python3.9.spec +++ b/python3.9.spec @@ -1068,6 +1068,8 @@ CheckPython() { # test_distutils # distutils.tests.test_bdist_rpm tests fail when bootstraping the Python # package: rpmbuild requires /usr/bin/pythonX.Y to be installed + # test_gdb on arm: + # https://bugzilla.redhat.com/show_bug.cgi?id=1846390 LD_LIBRARY_PATH=$ConfDir $ConfDir/python -m test.regrtest \ -wW --slowest -j0 --timeout=1800 \ %if %{with bootstrap} @@ -1076,6 +1078,9 @@ CheckPython() { %ifarch %{mips64} -x test_ctypes \ %endif + %ifarch %{arm} + -x test_gdb \ + %endif echo FINISHED: CHECKING OF PYTHON FOR CONFIGURATION: $ConfName