diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-02-18 00:37:46 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-02-18 00:39:25 +0100 |
commit | ff9d1a2f0c9cc82ae4c73d8660a87829bae9bf30 (patch) | |
tree | c6a0693694b3b7d93de3fa2c8eef099bc08e66ad /gnu/packages/engineering.scm | |
parent | 6f6db0269f76525e91201038b77798d666c8130b (diff) | |
parent | a01d926f9d10bb504ae4304567924e43368d4954 (diff) | |
download | gnu-guix-ff9d1a2f0c9cc82ae4c73d8660a87829bae9bf30.tar gnu-guix-ff9d1a2f0c9cc82ae4c73d8660a87829bae9bf30.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/engineering.scm')
-rw-r--r-- | gnu/packages/engineering.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index e94aeedf54..449584f57e 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch> ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 David Thompson <davet@gnu.org> @@ -178,6 +178,13 @@ plans and designs.") (add-before 'check 'set-home (lambda _ (setenv "HOME" (getenv "TMPDIR")) + #t)) + ;; FIXME: These two tests fail for unknown reasons. They return "2" + ;; when they should return "1". + (add-after 'unpack 'disable-failing-tests + (lambda _ + (substitute* "utils/tests/gxyrs/tests.list" + (("^do_nothing.*") "")) #t))) #:configure-flags (let ((pcb (assoc-ref %build-inputs "pcb"))) |