diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2019-04-30 18:29:10 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2019-04-30 18:29:10 +0200 |
| commit | 094aaa1a1e81b6c5461c1a2aa8ccd9019faa97ec (patch) | |
| tree | 1811b5f48196eed1fc268c4a22f2d7e06d3d109a | |
| parent | 81824af6a4b30368ed497686976c26f742bc6c8a (diff) | |
gnu: gexiv2: Skip failing test on 32-bit platforms.
* gnu/packages/gnome.scm (gexiv2)[arguments]: New field.
| -rw-r--r-- | gnu/packages/gnome.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index f19b1836d3a..a9e7c20105c 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm | |||
| @@ -4629,6 +4629,14 @@ classes for commonly used data structures.") | |||
| 4629 | (base32 | 4629 | (base32 |
| 4630 | "1qbcwq89g4r67k1dj4laqj441pj4195c8hzhxn8vc6mmg8adg6kx")))) | 4630 | "1qbcwq89g4r67k1dj4laqj441pj4195c8hzhxn8vc6mmg8adg6kx")))) |
| 4631 | (build-system meson-build-system) | 4631 | (build-system meson-build-system) |
| 4632 | (arguments | ||
| 4633 | ;; On 32-bit platforms, the test fails with a rounding error: | ||
| 4634 | ;; <https://bugzilla.gnome.org/show_bug.cgi?id=775249>. Just skip it for | ||
| 4635 | ;; now. | ||
| 4636 | (if (and (not (%current-target-system)) | ||
| 4637 | (member (%current-system) '("i686-linux" "armhf-linux"))) | ||
| 4638 | '(#:tests? #f) | ||
| 4639 | '())) | ||
| 4632 | (native-inputs | 4640 | (native-inputs |
| 4633 | `(("glib" ,glib "bin") | 4641 | `(("glib" ,glib "bin") |
| 4634 | ("pkg-config" ,pkg-config))) | 4642 | ("pkg-config" ,pkg-config))) |
