Skip to content

Commit b2be1f8

Browse files
committed
Add test for #10759
The test tries to run `cabal` in an environment where `GHC_ENVIRONMENT` is set, and checks that the compilation of a simple package isn't affected by the variable being set.
1 parent 0797c68 commit b2be1f8

File tree

5 files changed

+36
-0
lines changed

5 files changed

+36
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Revision history for EnvironmentFile
2+
3+
## 0.1.0.0 -- YYYY-mm-dd
4+
5+
* First version. Released on an unsuspecting world.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
cabal-version: 3.14
2+
name: EnvironmentFile
3+
version: 0.1.0.0
4+
license: NONE
5+
author: Matthew Pickering
6+
maintainer: [email protected]
7+
build-type: Simple
8+
extra-doc-files: CHANGELOG.md
9+
10+
common warnings
11+
ghc-options: -Wall
12+
13+
executable EnvironmentFile
14+
import: warnings
15+
main-is: Main.hs
16+
build-depends: base ^>=4.20.0.0
17+
hs-source-dirs: app
18+
default-language: Haskell2010
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module Main where
2+
3+
main :: IO ()
4+
main = putStrLn "Hello, Haskell!"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import Test.Cabal.Prelude
2+
import System.FilePath
3+
main = cabalTest $ recordMode DoNotRecord $ do
4+
env <- getTestEnv
5+
let cur_dir = testCurrentDir env
6+
-- Set GHC_ENVIRONMENT to a file which contains garbage
7+
withEnv [("GHC_ENVIRONMENT", Just (cur_dir </> "ghc.environment"))] $ do
8+
cabal "build" ["all"]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
this-file-(ghc.environment)-contains-garbage-it-should-not-be-read

0 commit comments

Comments
 (0)