We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e97152 commit 12a1991Copy full SHA for 12a1991
1 file changed
tools/build_steps.sh
@@ -202,6 +202,11 @@ function do_build_lib {
202
echo "the utest samin/damin have been temporarily disabled."
203
echo "QEMU does not support the 'lper' /'lpdr' instructions used"
204
fi
205
+ if [ "$plat" == "loongarch64" ] || [ "$plat" == "ppc64le" ] [ "$plat" == "s390x" ]; then
206
+ sed -i 's/CTEST(fork, safety)/CTEST_SKIP(fork, safety)/g' ./utest/test_fork.c
207
+ sed -i 's/CTEST(fork, safety_after_fork_in_parent)/CTEST_SKIP(fork, safety_after_fork_in_parent)/g' ./utest/test_post_fork.c
208
+ echo "QEMU has a race condition preventing fork tests to work as expected"
209
+ fi
210
if [ -n "$dynamic_list" ]; then
211
CFLAGS="$CFLAGS -fvisibility=protected -Wno-uninitialized" \
212
make BUFFERSIZE=20 DYNAMIC_ARCH=1 QUIET_MAKE=1 \
0 commit comments