[Git][ghc/ghc][wip/marge_bot_batch_merge_job] 13 commits: users-guide: Add pretty to package list

Marge Bot gitlab at gitlab.haskell.org
Sat Apr 20 23:06:04 UTC 2019



 Marge Bot pushed to branch wip/marge_bot_batch_merge_job at Glasgow Haskell Compiler / GHC


Commits:
8fd549ee by Ben Gamari at 2019-04-20T23:05:54Z
users-guide: Add pretty to package list

- - - - -
d088f18c by Ben Gamari at 2019-04-20T23:05:54Z
users-guide: Add libraries section to 8.10.1 release notes

- - - - -
b6cde054 by Andrew Martin at 2019-04-20T23:05:55Z
improve docs for casArray and casSmallArray

- - - - -
a312917c by Andrew Martin at 2019-04-20T23:05:55Z
[skip ci] say "machine words" instead of "Int units" in the primops docs

- - - - -
3cfafe3d by Andrew Martin at 2019-04-20T23:05:55Z
[skip ci] correct formatting of casArray# in docs for casSmallArray#

- - - - -
983d4a91 by Andrew Martin at 2019-04-20T23:05:55Z
[skip ci] correct the docs for casArray a little more. clarify that the returned element may be two different things

- - - - -
b41f3cdf by Artem Pyanykh at 2019-04-20T23:05:56Z
testsuite: move tests related to linker under tests/rts/linker

- - - - -
bfd8b6a8 by Artem Pyanykh at 2019-04-20T23:05:56Z
testsuite: fix ifdef lint errors under tests/rts/linker

- - - - -
a67d341f by Ben Gamari at 2019-04-20T23:05:57Z
ErrUtils: Emit progress messages to eventlog

- - - - -
32f49a69 by Ben Gamari at 2019-04-20T23:05:57Z
Emit GHC timing events to eventlog

- - - - -
b33bc22e by Matthew Pickering at 2019-04-20T23:05:57Z
Correct off by one error in ghci +c

Fixes #16569

- - - - -
c619ef2b by Alp Mestanogullari at 2019-04-20T23:05:59Z
Hadrian: use the testsuite driver's config.haddock arg more correctly

4 haddock tests assume that .haddock files have been produced, by using the
'req_haddock' modifier. The testsuite driver assumes that this condition is
satisfied if 'config.haddock' is non-empty, but before this patch Hadrian was
always passing the path to where the haddock executable should be, regardless
of whether it is actually there or not.

Instead, we now pass an empty config.haddock when we can't find all of
<build root>/docs/html/libraries/<pkg>/<pkg>.haddock>, where <pkg> ranges over
array, base, ghc-prim, process and template-haskell, and pass the path
to haddock when all those file exists. This has the (desired) effect of skipping
the 4 tests (marked as 'missing library') when the docs haven't been built,
and running the haddock tests when they have.

- - - - -
10468272 by Vladislav Zavialov at 2019-04-20T23:05:59Z
Stop misusing EWildPat in pattern match coverage checking

EWildPat is a constructor of HsExpr used in the parser to represent
wildcards in ambiguous positions:

* in expression context, EWildPat is turned into hsHoleExpr (see rnExpr)
* in pattern context, EWildPat is turned into WildPat (see checkPattern)

Since EWildPat exists solely for the needs of the parser, we could
remove it by improving the parser.

However, EWildPat has also been used for a different purpose since
8a50610: to represent patterns that the coverage checker cannot handle.
Not only this is a misuse of EWildPat, it also stymies the removal of
EWildPat.

- - - - -


30 changed files:

- .gitlab-ci.yml
- compiler/deSugar/Check.hs
- compiler/main/ErrUtils.hs
- compiler/prelude/primops.txt.pp
- docs/users_guide/8.10.1-notes.rst
- docs/users_guide/8.8.1-notes.rst
- ghc/GHCi/UI.hs
- ghc/GHCi/UI/Info.hs
- hadrian/src/Settings/Builders/RunTest.hs
- + testsuite/tests/ghci/scripts/T16569.hs
- + testsuite/tests/ghci/scripts/T16569.script
- + testsuite/tests/ghci/scripts/T16569.stdout
- testsuite/tests/ghci/scripts/all.T
- testsuite/tests/ghci/should_run/T15369.stdout
- testsuite/tests/rts/Makefile
- testsuite/tests/rts/all.T
- testsuite/tests/rts/LinkerUnload.hs → testsuite/tests/rts/linker/LinkerUnload.hs
- testsuite/tests/rts/linker/Makefile
- testsuite/tests/rts/T11223/Makefile → testsuite/tests/rts/linker/T11223/Makefile
- testsuite/tests/rts/T11223/T11223_link_order_a_b_2_fail.stderr → testsuite/tests/rts/linker/T11223/T11223_link_order_a_b_2_fail.stderr
- testsuite/tests/rts/T11223/T11223_link_order_a_b_2_fail.stderr-ws-32-mingw32 → testsuite/tests/rts/linker/T11223/T11223_link_order_a_b_2_fail.stderr-ws-32-mingw32
- testsuite/tests/rts/T11223/T11223_link_order_a_b_2_fail.stderr-ws-64-mingw32 → testsuite/tests/rts/linker/T11223/T11223_link_order_a_b_2_fail.stderr-ws-64-mingw32
- testsuite/tests/rts/T11223/T11223_link_order_a_b_succeed.stdout → testsuite/tests/rts/linker/T11223/T11223_link_order_a_b_succeed.stdout
- testsuite/tests/rts/T11223/T11223_link_order_b_a_2_succeed.stdout → testsuite/tests/rts/linker/T11223/T11223_link_order_b_a_2_succeed.stdout
- testsuite/tests/rts/T11223/T11223_link_order_b_a_succeed.stdout → testsuite/tests/rts/linker/T11223/T11223_link_order_b_a_succeed.stdout
- testsuite/tests/rts/T11223/T11223_simple_duplicate_lib.stderr → testsuite/tests/rts/linker/T11223/T11223_simple_duplicate_lib.stderr
- testsuite/tests/rts/T11223/T11223_simple_duplicate_lib.stderr-ws-32-mingw32 → testsuite/tests/rts/linker/T11223/T11223_simple_duplicate_lib.stderr-ws-32-mingw32
- testsuite/tests/rts/T11223/T11223_simple_duplicate_lib.stderr-ws-64-mingw32 → testsuite/tests/rts/linker/T11223/T11223_simple_duplicate_lib.stderr-ws-64-mingw32
- testsuite/tests/rts/T11223/T11223_simple_link.stdout → testsuite/tests/rts/linker/T11223/T11223_simple_link.stdout
- testsuite/tests/rts/T11223/T11223_simple_link_lib.stdout → testsuite/tests/rts/linker/T11223/T11223_simple_link_lib.stdout


The diff was not included because it is too large.


View it on GitLab: https://gitlab.haskell.org/ghc/ghc/compare/e46e602696689b3a8a465c58ac97877ee5953bbc...10468272bed125eb799f27215be29b91c1fde2f6

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/compare/e46e602696689b3a8a465c58ac97877ee5953bbc...10468272bed125eb799f27215be29b91c1fde2f6
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/20190420/552a9dee/attachment-0001.html>


More information about the ghc-commits mailing list