gnu: strace: Disable parallel tests.
Tests fail in undeterministic fashion when run in parallel on phat rigs. Fixes <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=32459>. Reported by Clément Lassieur <clement@lassieur.org>. * gnu/packages/linux.scm (strace)[arguments]: Disable #:parallel-tests?.master
parent
3004f1c69b
commit
72e782b2b5
|
@ -957,7 +957,9 @@ Zerofree requires the file system to be unmounted or mounted read-only.")
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "strace.c"
|
(substitute* "strace.c"
|
||||||
(("/bin/sh") (which "sh")))
|
(("/bin/sh") (which "sh")))
|
||||||
#t)))))
|
#t)))
|
||||||
|
;; See <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=32459>.
|
||||||
|
#:parallel-tests? #f)) ; undeterministic failures
|
||||||
(native-inputs `(("perl" ,perl)))
|
(native-inputs `(("perl" ,perl)))
|
||||||
(synopsis "System call tracer for Linux")
|
(synopsis "System call tracer for Linux")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue