guix-commits
[Top][All Lists]
Advanced

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

branch core-updates updated: gnu: GHC: Adjust tests for grep 3.8.


From: guix-commits
Subject: branch core-updates updated: gnu: GHC: Adjust tests for grep 3.8.
Date: Sat, 10 Sep 2022 10:58:25 -0400

This is an automated email from the git hooks/post-receive script.

mbakke pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new b4693f4a58 gnu: GHC: Adjust tests for grep 3.8.
b4693f4a58 is described below

commit b4693f4a58b977c92282c81d3032f5be990e866a
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Fri Sep 9 20:49:55 2022 +0200

    gnu: GHC: Adjust tests for grep 3.8.
    
    This fixes a test failure introduced in commit
    c527b0ce23c5d9228d29c5f90892aa5f05e77347.
    
    * gnu/packages/patches/ghc-testsuite-grep-compat.patch: New file.
    * gnu/local.mk (dist_patch_DATA): Adjust accordingly.
    * gnu/packages/haskell.scm (ghc-8.6, ghc-8.8, ghc-8.10)[native-inputs]: 
Patch
    the 'ghc-testsuite' input.
---
 gnu/local.mk                                       |  1 +
 gnu/packages/haskell.scm                           |  9 +++--
 .../patches/ghc-testsuite-grep-compat.patch        | 39 ++++++++++++++++++++++
 3 files changed, 46 insertions(+), 3 deletions(-)

diff --git a/gnu/local.mk b/gnu/local.mk
index 60299d0cea..84895b0163 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1160,6 +1160,7 @@ dist_patch_DATA =                                         
\
   %D%/packages/patches/ghc-4.patch                             \
   %D%/packages/patches/ghc-8.0-fall-back-to-madv_dontneed.patch        \
   %D%/packages/patches/ghc-testsuite-dlopen-pie.patch          \
+  %D%/packages/patches/ghc-testsuite-grep-compat.patch         \
   %D%/packages/patches/ghc-language-haskell-extract-ghc-8.10.patch     \
   %D%/packages/patches/ghostscript-no-header-id.patch          \
   %D%/packages/patches/ghostscript-no-header-uuid.patch                \
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 7f0e3e8cb4..ed2eaea984 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -763,7 +763,8 @@ interactive environment for the functional language 
Haskell.")
            (uri (string-append
                  "https://www.haskell.org/ghc/dist/";
                  version "/" name "-" version "-testsuite.tar.xz"))
-           (patches (search-patches "ghc-testsuite-dlopen-pie.patch"))
+           (patches (search-patches "ghc-testsuite-dlopen-pie.patch"
+                                    "ghc-testsuite-grep-compat.patch"))
            (sha256
             (base32
              "0pw9r91g2np3i806g2f4f8z4jfdd7mx226cmdizk4swa7av1qf91"))
@@ -844,7 +845,8 @@ interactive environment for the functional language 
Haskell.")
            (uri (string-append
                  "https://www.haskell.org/ghc/dist/";
                  version "/ghc-" version "-testsuite.tar.xz"))
-           (patches (search-patches "ghc-testsuite-dlopen-pie.patch"))
+           (patches (search-patches "ghc-testsuite-dlopen-pie.patch"
+                                    "ghc-testsuite-grep-compat.patch"))
            (sha256
             (base32
              "0c55pj2820q26rikhpf636sn4mjgqsxjrl94vsywrh79dxp3k14z"))
@@ -902,7 +904,8 @@ interactive environment for the functional language 
Haskell.")
            (uri (string-append
                  "https://www.haskell.org/ghc/dist/";
                  version "/ghc-" version "-testsuite.tar.xz"))
-           (patches (search-patches "ghc-testsuite-dlopen-pie.patch"))
+           (patches (search-patches "ghc-testsuite-dlopen-pie.patch"
+                                    "ghc-testsuite-grep-compat.patch"))
            (sha256
             (base32
              "1zl25gg6bpx5601k8h3cqnns1xfc0nqgwnh8jvn2s65ra3f2g1nz"))
diff --git a/gnu/packages/patches/ghc-testsuite-grep-compat.patch 
b/gnu/packages/patches/ghc-testsuite-grep-compat.patch
new file mode 100644
index 0000000000..a2bd5fcec4
--- /dev/null
+++ b/gnu/packages/patches/ghc-testsuite-grep-compat.patch
@@ -0,0 +1,39 @@
+Remove stray escapes to avoid warnings from grep 3.8 which breaks
+expected test output.
+
+diff --git a/testsuite/tests/hsc2hs/Makefile b/testsuite/tests/hsc2hs/Makefile
+--- a/testsuite/tests/hsc2hs/Makefile
++++ b/testsuite/tests/hsc2hs/Makefile
+@@ -47,5 +47,5 @@ T12504:
+ ifeq "$(WINDOWS)" "YES"
+       grep '{-# LINE 1 \"T12504\\\\path\\\\to\\\\$@\.hsc\" #-}' 
T12504/path/to/$@.hs
+ else
+-      grep '{-# LINE 1 \"T12504/path/to/$@\.hsc\" #-}' T12504/path/to/$@.hs
++      grep '{-# LINE 1 "T12504/path/to/$@\.hsc" #-}' T12504/path/to/$@.hs
+ endif
+diff --git a/testsuite/tests/numeric/should_run/T7014.primops 
b/testsuite/tests/numeric/should_run/T7014.primops
+--- a/testsuite/tests/numeric/should_run/T7014.primops
++++ b/testsuite/tests/numeric/should_run/T7014.primops
+@@ -1,8 +1,8 @@
+ and#
+ or#
+ uncheckedShift.*#
+-\+#
+-\-#
+++#
++-#
+ \*#
+ quotInt#
+ remInt#
+diff --git a/testsuite/tests/simplCore/should_compile/Makefile 
b/testsuite/tests/simplCore/should_compile/Makefile
+--- a/testsuite/tests/simplCore/should_compile/Makefile
++++ b/testsuite/tests/simplCore/should_compile/Makefile
+@@ -226,7 +226,7 @@ str-rules:
+ # g should have been collapsed into one defininition by CSE.
+ .PHONY: T13340
+ T13340:
+-      '$(TEST_HC)' $(TEST_HC_OPTS) -c -O T13340.hs -ddump-simpl 
-dsuppress-all | grep -c '\+#'
++      '$(TEST_HC)' $(TEST_HC_OPTS) -c -O T13340.hs -ddump-simpl 
-dsuppress-all | grep -c '+#'
+ 
+ 
+ # We expect to see all dictionaries specialized away.



reply via email to

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