File tree Expand file tree Collapse file tree 30 files changed +510
-40
lines changed
Expand file tree Collapse file tree 30 files changed +510
-40
lines changed Original file line number Diff line number Diff line change 11name: num
22include: ../../../src/ .
3+ flags:
4+ --warning=noUnsupportedIndexedMatch
Original file line number Diff line number Diff line change 1+ cabal-version : 2.4
2+ name : num
3+ version : 2.0
4+ build-type : Simple
5+ description : Run this test
6+ license : MIT
7+
8+ tested-with :
9+ GHC == 9.2.8
10+
11+ common common-build-parameters
12+ default-language :
13+ Haskell2010
14+
15+ default-extensions :
16+ PatternGuards
17+ PatternSynonyms
18+
19+ build-depends :
20+ base >= 4.12 && < 4.20
21+
22+ ghc-options : -Wno-missing-home-modules
23+
24+ executable num
25+ import : common-build-parameters
26+ hs-source-dirs : _build
27+ main-is : MAlonzo/Code/Main.hs
28+ ghc-options : -main-is MAlonzo.Code.Main
Original file line number Diff line number Diff line change 1- $1 --compile-dir=../../_build -c Main.agda > log
2- ./../../_build/Main > output
1+ TEST_NAME=num
32
4- rm ../../_build/Main
5- rm ../../_build/MAlonzo/Code/Main*
3+ # Get configuration information
4+ . ../../config.sh
5+
6+ # Set up clean logs directory
7+ rm -rf logs/
8+ mkdir logs
9+
10+ # Use pre-existing build directory to avoid rechecking stdlib modules
11+ ln -sf ../../_build _build
12+
13+ # Compile the Agda module and build the generated code
14+ $1 --compile-dir=_build -c --ghc-dont-call-ghc Main.agda > logs/agda-build
15+ cabal build "$TEST_NAME" --with-compiler "$GHC_EXEC" > logs/cabal-build
16+
17+ # Run the test
18+ cabal exec -v0 "$TEST_NAME" --with-compiler "$GHC_EXEC" > output
19+
20+ # Clean up after ourselves
21+ rm -R dist-newstyle
22+ rm -R _build/MAlonzo/Code/
Original file line number Diff line number Diff line change 11name: reflection
22include: ../../../src/ .
3+ flags:
4+ --warning=noUnsupportedIndexedMatch
Original file line number Diff line number Diff line change 1+ cabal-version : 2.4
2+ name : reflection
3+ version : 2.0
4+ build-type : Simple
5+ description : Run this test
6+ license : MIT
7+
8+ tested-with :
9+ GHC == 9.2.8
10+
11+ common common-build-parameters
12+ default-language :
13+ Haskell2010
14+
15+ default-extensions :
16+ PatternGuards
17+ PatternSynonyms
18+
19+ build-depends :
20+ base >= 4.12 && < 4.20
21+
22+ ghc-options : -Wno-missing-home-modules
23+
24+ executable reflection
25+ import : common-build-parameters
26+ hs-source-dirs : _build
27+ main-is : MAlonzo/Code/Main.hs
28+ ghc-options : -main-is MAlonzo.Code.Main
Original file line number Diff line number Diff line change 1- $1 --compile-dir=../../_build -c Main.agda > log
2- ./../../_build/Main > output
1+ TEST_NAME=reflection
32
4- rm ../../_build/Main
5- rm ../../_build/MAlonzo/Code/Main*
3+ # Get configuration information
4+ . ../../config.sh
5+
6+ # Set up clean logs directory
7+ rm -rf logs/
8+ mkdir logs
9+
10+ # Use pre-existing build directory to avoid rechecking stdlib modules
11+ ln -sf ../../_build _build
12+
13+ # Compile the Agda module and build the generated code
14+ $1 --compile-dir=_build -c --ghc-dont-call-ghc Main.agda > logs/agda-build
15+ cabal build "$TEST_NAME" --with-compiler "$GHC_EXEC" > logs/cabal-build
16+
17+ # Run the test
18+ cabal exec -v0 "$TEST_NAME" --with-compiler "$GHC_EXEC" > output
19+
20+ # Clean up after ourselves
21+ rm -R dist-newstyle
22+ rm -R _build/MAlonzo/Code/
Original file line number Diff line number Diff line change 1- $1 --compile-dir=../../_build -c Main.agda > log
2- ./../../_build/Main > output
1+ TEST_NAME=tree
32
4- rm ../../_build/Main
5- rm ../../_build/MAlonzo/Code/Main*
3+ # Get configuration information
4+ . ../../config.sh
5+
6+ # Set up clean logs directory
7+ rm -rf logs/
8+ mkdir logs
9+
10+ # Use pre-existing build directory to avoid rechecking stdlib modules
11+ ln -sf ../../_build _build
12+
13+ # Compile the Agda module and build the generated code
14+ $1 --compile-dir=_build -c --ghc-dont-call-ghc Main.agda > logs/agda-build
15+ cabal build "$TEST_NAME" --with-compiler "$GHC_EXEC" > logs/cabal-build
16+
17+ # Run the test
18+ cabal exec -v0 "$TEST_NAME" --with-compiler "$GHC_EXEC" > output
19+
20+ # Clean up after ourselves
21+ rm -R dist-newstyle
22+ rm -R _build/MAlonzo/Code/
Original file line number Diff line number Diff line change 11name: tree
22include: ../../../src/ .
3+ flags:
4+ --warning=noUnsupportedIndexedMatch
Original file line number Diff line number Diff line change 1+ cabal-version : 2.4
2+ name : tree
3+ version : 2.0
4+ build-type : Simple
5+ description : Run this test
6+ license : MIT
7+
8+ tested-with :
9+ GHC == 9.2.8
10+
11+ common common-build-parameters
12+ default-language :
13+ Haskell2010
14+
15+ default-extensions :
16+ PatternGuards
17+ PatternSynonyms
18+
19+ build-depends :
20+ base >= 4.12 && < 4.20
21+
22+ ghc-options : -Wno-missing-home-modules
23+
24+ executable tree
25+ import : common-build-parameters
26+ hs-source-dirs : _build
27+ main-is : MAlonzo/Code/Main.hs
28+ ghc-options : -main-is MAlonzo.Code.Main
Original file line number Diff line number Diff line change 11name: ansi
22include: ../../../src/ .
3+ flags:
4+ --warning=noUnsupportedIndexedMatch
You can’t perform that action at this time.
0 commit comments