summaryrefslogtreecommitdiff
path: root/testsuite/tests/driver/T4114c.hs
blob: 96e86259412b28cf8f119d3c8b1a29acf32f270b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- Test the flage `force-no-intermediates` (issue #4114)
module Main (main) where

import T4114cSub

keep, nokeep :: [FilePath]
keep   = ["T4114cSub.hi", "T4114c.hi"]
nokeep = ["T4114cSub.o", "T4114c.o"]


main :: IO ()
main = do
  mapM_ assertNoKeep nokeep
  mapM_ assertKeep keep