[Git][ghc/ghc][wip/ghc-9.10] 2 commits: Bump parsec submodule to upstream master
Ben Gamari (@bgamari)
gitlab at gitlab.haskell.org
Fri Apr 12 01:23:38 UTC 2024
Ben Gamari pushed to branch wip/ghc-9.10 at Glasgow Haskell Compiler / GHC
Commits:
178f20ce by Ben Gamari at 2024-04-11T18:51:33-04:00
Bump parsec submodule to upstream master
- - - - -
4cf82155 by Ben Gamari at 2024-04-11T21:22:14-04:00
testsuite: More aggressive normalisation of process004 output
It turns out that this test uses `execvp`, not `exec` on CentOS 7.
Normalise this spurious difference away.
- - - - -
3 changed files:
- libraries/parsec
- testsuite/tests/process/all.T
- utils/haddock
Changes:
=====================================
libraries/parsec
=====================================
@@ -1 +1 @@
-Subproject commit 0736c51d0b39a9852cd39259af4cfaf6cafe36a3
+Subproject commit 9c071b05fbb077afbaf0dd2dfdab21265859ae91
=====================================
testsuite/tests/process/all.T
=====================================
@@ -1,6 +1,10 @@
-# some platforms use spawnp instead of exec in some cases, resulting
+# some platforms use spawnp or execvp instead of exec in some cases, resulting
# in spurious error output changes.
-normalise_exec = normalise_fun(lambda s: s.replace('posix_spawnp', 'exec'))
+normalise_exec = normalise_fun(
+ lambda s: s.replace('posix_spawnp', 'exec'),
+ lambda s: s.replace('execvp', 'exec'),
+ lambda s: s.replace('execvpe', 'exec'),
+)
test('process001', [req_process], compile_and_run, [''])
test('process002', [fragile_for(16547, concurrent_ways), req_process], compile_and_run, [''])
=====================================
utils/haddock
=====================================
@@ -1 +1 @@
-Subproject commit 1432bcc943d41736eca491ecec4eb9a6304dab36
+Subproject commit 5007fd360e73b5253a9a1b371bfae653b00d03c6
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/220cda2c7d3055499b7b40ea4dbf2a0ed7bf18e0...4cf82155ab7ed13249681a2fdf5a88dc93bf1e0b
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/220cda2c7d3055499b7b40ea4dbf2a0ed7bf18e0...4cf82155ab7ed13249681a2fdf5a88dc93bf1e0b
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20240411/6f1f97fe/attachment.html>
More information about the ghc-commits
mailing list