jjb: binutils-gdb: don't run tests in parallel
authorSimon Marchi <simon.marchi@efficios.com>
Tue, 9 Jan 2024 15:42:51 +0000 (10:42 -0500)
committerSimon Marchi <simon.marchi@efficios.com>
Tue, 9 Jan 2024 15:42:51 +0000 (10:42 -0500)
We see some tests failing, where GDB gets SIGKILLed, most likely some
out of memory problems.  Don't run test in parallel for now, to try to
avoid these.

Change-Id: I6e3ed399dd9376d5ab0316f85b77eb4c0b35c9e1

scripts/binutils-gdb/build.sh

index fd07122f5040d639319f94638e1b6b103d78809f..94bded9d9d0962cae4f434cde9ea7190111b9bdd 100755 (executable)
@@ -300,7 +300,7 @@ esac
 $MAKE -C gdb/testsuite site.exp
 # shellcheck disable=SC2016
 echo 'set gdb_test_timeout [expr 5 * $timeout]' >> gdb/testsuite/site.exp
-$MAKE -C gdb --keep-going check -j "$($NPROC)" RUNTESTFLAGS="$RUNTESTFLAGS" FORCE_PARALLEL="1" || true
+$MAKE -C gdb --keep-going check RUNTESTFLAGS="$RUNTESTFLAGS" || true
 
 # Copy the dejagnu test results for archiving before cleaning the build dir
 mkdir "${WORKSPACE}/results"
This page took 0.023902 seconds and 4 git commands to generate.