packages feed

Cabal-1.22.0.0: tests/PackageTests/TemplateHaskell/Check.hs

module PackageTests.TemplateHaskell.Check where

import PackageTests.PackageTester
import System.FilePath
import Test.HUnit

vanilla :: FilePath -> Test
vanilla ghcPath = TestCase $ do
  let spec = PackageSpec
          { directory = "PackageTests" </> "TemplateHaskell" </> "vanilla"
          , configOpts = []
          , distPref = Nothing
          }
  result <- cabal_build spec ghcPath
  assertBuildSucceeded result

profiling :: FilePath -> Test
profiling ghcPath = TestCase $ do
   let flags = ["--enable-library-profiling"
--                ,"--disable-library-vanilla"
               ,"--enable-profiling"]
       spec = PackageSpec
          { directory = "PackageTests" </> "TemplateHaskell" </> "profiling"
          , configOpts = flags
          , distPref = Nothing
          }
   result <- cabal_build spec ghcPath
   assertBuildSucceeded result

dynamic :: FilePath -> Test
dynamic ghcPath = TestCase $ do
    let flags = ["--enable-shared"
--                ,"--disable-library-vanilla"
                ,"--enable-executable-dynamic"]
        spec = PackageSpec
            { directory = "PackageTests" </> "TemplateHaskell" </> "dynamic"
            , configOpts = flags
            , distPref = Nothing
            }
    result <- cabal_build spec ghcPath
    assertBuildSucceeded result