libunistring: enableParallelChecking = false

enableParallelBuilding was disabled on 2018-09-09 in 4efd4053ed
with a comment describing the test failures it caused.

doCheck was disabled afterward, on 2019-08-04 in c17058226a.

Since parallelism bug appears to be in the tests, let's enable
parallel building but disable enableParallelChecking.

Thanks to @OPNA2608 for mentioning enableParallelChecking; which I
didn't know about before writing the first draft of this commit.
This commit is contained in:
Adam Joseph 2023-01-20 22:30:52 -08:00
parent 2773ad7600
commit f81ab57049

View File

@ -37,7 +37,8 @@ stdenv.mkDerivation rec {
./unistdio/test-u16-vasnprintf3.sh: line 16: ./test-u16-vasnprintf1: No such file or directory
FAIL unistdio/test-u16-vasnprintf3.sh (exit status: 1)
*/
enableParallelBuilding = false;
enableParallelChecking = false;
enableParallelBuilding = true;
meta = {
homepage = "https://www.gnu.org/software/libunistring/";