[GHC] #14823: Test profiling/should_run/scc001 fails on Circle CI
GHC
ghc-devs at haskell.org
Mon Feb 19 12:15:56 UTC 2018
#14823: Test profiling/should_run/scc001 fails on Circle CI
-------------------------------------+-------------------------------------
Reporter: mrkkrp | Owner: (none)
Type: bug | Status: new
Priority: normal | Milestone:
Component: Compiler | Version: 8.2.2
Keywords: | Operating System: Unknown/Multiple
Architecture: | Type of failure: None/Unknown
Unknown/Multiple |
Test Case: | Blocked By:
Blocking: | Related Tickets:
Differential Rev(s): | Wiki Page:
-------------------------------------+-------------------------------------
The test profiling/should_run/scc001 fails on CI:
{{{#!hs
module Main (main) where
main :: IO ()
main = do print $ f True
print $ g 3
print $ h 'a'
f :: a -> a
f x = x
g :: Int -> Int
g x = x
h :: Char -> Char
Just h = Just id
}}}
And it outputs:
{{{
True
3
ghc-stage2: ghc-iserv terminated (-11)
}}}
instead of
{{{
True
3
'a'
}}}
I guess I'll mark it as an expected failure for now in my PR.
--
Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/14823>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
More information about the ghc-tickets
mailing list