diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2022-05-19 12:17:52 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2022-05-19 12:17:52 +0200 |
commit | ca1b4cf79a8a63af9e92047a97970be4262b557e (patch) | |
tree | 283d497a36e4f85eb960e3db8a41ba60ae3c64ce | |
parent | b47f38d0ae7eceef8f1c8a37f6384e478c292eb5 (diff) | |
download | packages-ca1b4cf79a8a63af9e92047a97970be4262b557e.tar.xz |
extra/python: disabled test_multiprocessing_forkserver test (hangs)
-rw-r--r-- | core/python/PKGBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/python/PKGBUILD b/core/python/PKGBUILD index d95714be..ebd03cd8 100644 --- a/core/python/PKGBUILD +++ b/core/python/PKGBUILD @@ -45,10 +45,11 @@ fi # test_socket tests take more than 1.5 hours, so ignoring them # Ignore test_cmath test_math test_turtle - they fail due to too low precision # on i686 (all of them - really? - actually, I just checket test_cmath) +# test_multiprocessing_forkserver hangs at least on i486 eval "$( declare -f check | \ sed " - /-uall/ s/;\?$/ -x test_posix -x test_gdb -x test_socket -x test_cmath -x test_math -x test_turtle \\|\\| true/g + /-uall/ s/;\?$/ -x test_posix -x test_gdb -x test_socket -x test_cmath -x test_math -x test_turtle -x test_multiprocessing_forkserver \\|\\| true/g " )" |