Skip to content
Snippets Groups Projects
Commit 55346ede authored by Sylvain Henry's avatar Sylvain Henry Committed by Marge Bot
Browse files

JS: disable MergeObjsMode test

This isn't implemented for JS backend objects.
parent df9fd9f7
No related branches found
No related tags found
No related merge requests found
module A where
-- Don't inline otherwise A.o may not be needed by Main.o
{-# NOINLINE a #-}
a :: Int
a = 42
module B where
-- Don't inline otherwise B.o may not be needed by Main.o
{-# NOINLINE b #-}
b :: String
b = "hello world"
test('MergeObjsMode',
[ extra_files(['A.hs', 'B.hs', 'Main.hs'])
, js_skip # Object merging isn't supported by the JS backend
],
makefile_test,
[])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment