From 416a5a9a51c96ebc6d0d04be62fa3e9611321294 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sun, 20 Mar 2016 23:01:11 +0100 Subject: gnu: chicken: Disable port tests. * gnu/packages/scheme.scm (chicken)[arguments]: Do not run port tests. --- gnu/packages/scheme.scm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index cb113e8d9c..b8b2dbacab 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -331,7 +331,14 @@ (define-public chicken (delete 'configure) (delete 'check) (add-after 'install 'check - (assoc-ref %standard-phases 'check))) + (assoc-ref %standard-phases 'check)) + (add-after 'unpack 'disable-broken-tests + (lambda _ + ;; The port tests fail with this error: + ;; Error: (line 294) invalid escape-sequence '\x o' + (substitute* "tests/runtests.sh" + (("\\$interpret -s port-tests\\.scm") "")) + #t))) #:make-flags (let ((out (assoc-ref %outputs "out"))) (list "PLATFORM=linux" -- cgit v1.2.3