diff options
author | Thomas Danckaert <post@thomasdanckaert.be> | 2017-09-27 09:14:02 +0200 |
---|---|---|
committer | Thomas Danckaert <thomas.danckaert@gmail.com> | 2017-10-07 21:51:47 +0200 |
commit | b01981a9e280b1ea051d332ea5bdeab2f72fbb43 (patch) | |
tree | a7eb677f4b63d59c1fe2775e391fd639bb78df46 | |
parent | 19d27131968355a1da962e52163df51e0e03aba1 (diff) | |
download | patches-b01981a9e280b1ea051d332ea5bdeab2f72fbb43.tar patches-b01981a9e280b1ea051d332ea5bdeab2f72fbb43.tar.gz |
gnu: bluez: Mark segfaulting test with XFAIL for all architectures.
* gnu/packages/linux.scm (bluez): [arguments] Mark test-gatt with XFAIL.
-rw-r--r-- | gnu/packages/linux.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index abce9b98d3..04ad0a6451 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3089,10 +3089,11 @@ Bluetooth audio output devices like headphones or loudspeakers.") (string-append (assoc-ref inputs "eudev") "/bin/udevadm"))) #t)))) - ;; FIXME: Skip one test that segfaults on ARM. - ,@(if (string=? (%current-system) "armhf-linux") - '(#:make-flags '("XFAIL_TESTS=unit/test-gatt")) - '()))) + ;; FIXME: Skip a test that segfaults on some machines. Seems to be a + ;; timing issue (discussion on upstream mailing list: + ;; https://marc.info/?t=149578476300002&r=1&w=2) + #:make-flags '("XFAIL_TESTS=unit/test-gatt"))) + (native-inputs `(("pkg-config" ,pkg-config) ("gettext" ,gettext-minimal))) |