summaryrefslogtreecommitdiff
path: root/testsuite/tests/driver/T4114a.hs
blob: 9664dabafada834868da88499a27b15dd40acf48 (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 T4114aSub

keep, nokeep :: [FilePath]
keep   = ["T4114aSub.hi", "T4114aSub.o", "T4114a.hi", "T4114a.o"]
nokeep = [ ]


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