guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: orc: Disable the 'test-limits' and 'exec_opcodes_sys' tests.


From: Mark H. Weaver
Subject: 01/01: gnu: orc: Disable the 'test-limits' and 'exec_opcodes_sys' tests.
Date: Fri, 06 Feb 2015 04:09:11 +0000

mhw pushed a commit to branch master
in repository guix.

commit ce4a347fe9397d94d4b7aba4c84fd9cbf8f0167a
Author: Mark H Weaver <address@hidden>
Date:   Thu Feb 5 23:05:41 2015 -0500

    gnu: orc: Disable the 'test-limits' and 'exec_opcodes_sys' tests.
    
    * gnu/packages/gstreamer.scm (orc)[arguments]: Disable the 'test-limits' and
      'exec_opcodes_sys' tests, which fail on some machines.
---
 gnu/packages/gstreamer.scm |   15 ++++++++++++++-
 1 files changed, 14 insertions(+), 1 deletions(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 7d8ef83..7afb9c4 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -1,7 +1,8 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2013 Andreas Enge <address@hidden>
-;;; Copyright   2014 John Darrington <address@hidden>
+;;; Copyright © 2014 John Darrington <address@hidden>
 ;;; Copyright © 2015 Sou Bunnbu <address@hidden>
+;;; Copyright © 2015 Mark H Weaver <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -52,6 +53,18 @@
                (base32
                 "1ryz1gfgrxcj806cakcblxf0bcwq8p2mw8k86fs3f5wlwayawzkn"))))
     (build-system gnu-build-system)
+    (arguments `(#:phases
+                 (alist-cons-before
+                  'check 'disable-faulty-test
+                  (lambda _
+                    ;; XXX Disable the 'test-limits' and 'exec_opcodes_sys'
+                    ;; tests, which fail on some machines.  See:
+                    ;; https://bugzilla.gnome.org/show_bug.cgi?id=735273
+                    (substitute* '("testsuite/test-limits.c"
+                                   "testsuite/exec_opcodes_sys.c")
+                      (("if \\(error\\) return 1;")
+                       "if (error) return 77;")))
+                  %standard-phases)))
     (home-page "http://code.entropywave.com/orc/";)
     (synopsis "Oil runtime compiler")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]