Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Cabal
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
Packages
Cabal
Commits
f4f5e5c3
Commit
f4f5e5c3
authored
8 years ago
by
Edward Z. Yang
Committed by
Edward Z. Yang
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Put cabal-tests test output into a logfile by default.
Signed-off-by:
Edward Z. Yang
<
ezyang@cs.stanford.edu
>
parent
4924762d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cabal-testsuite/main/cabal-tests.hs
+6
-4
6 additions, 4 deletions
cabal-testsuite/main/cabal-tests.hs
with
6 additions
and
4 deletions
cabal-testsuite/main/cabal-tests.hs
+
6
−
4
View file @
f4f5e5c3
...
...
@@ -133,7 +133,7 @@ main = do
logEnd
=
writeChan
chan
ServerLogEnd
-- NB: don't use withAsync as we do NOT want to cancel this
-- on an exception
async_logger
<-
async
(
outputThread
verbosity
chan
)
async_logger
<-
async
(
withFile
"cabal-tests.log"
WriteMode
$
outputThread
verbosity
chan
)
-- Make sure we pump out all the logs before quitting
(
\
m
->
finally
m
(
logEnd
>>
wait
async_logger
))
$
do
...
...
@@ -242,8 +242,8 @@ partitionTests = go [] []
".multitest.hs"
->
go
ts
(
f
:
ms
)
fs
_
->
go
ts
ms
fs
outputThread
::
Verbosity
->
Chan
ServerLogMsg
->
IO
()
outputThread
verbosity
chan
=
go
""
outputThread
::
Verbosity
->
Chan
ServerLogMsg
->
Handle
->
IO
()
outputThread
verbosity
chan
log_handle
=
go
""
where
go
prev_hdr
=
do
v
<-
readChan
chan
...
...
@@ -270,7 +270,9 @@ outputThread verbosity chan = go ""
[]
->
[]
r
:
rs
->
mb_hdr
r
:
map
(
ws
++
)
rs
hPutStr
stderr
(
unlines
ls'
)
logmsg
=
unlines
ls'
hPutStr
stderr
logmsg
hPutStr
log_handle
logmsg
go
hdr
-- Cribbed from tasty
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment