From 7b191a773d3a1f91131943a4ed84b285839bdf35 Mon Sep 17 00:00:00 2001 From: Brad Richardson Date: Wed, 28 Oct 2020 12:33:07 -0500 Subject: Add command line options to specify the compiler --- bootstrap/test/Spec.hs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'bootstrap/test') diff --git a/bootstrap/test/Spec.hs b/bootstrap/test/Spec.hs index c1f7108..ac72b07 100644 --- a/bootstrap/test/Spec.hs +++ b/bootstrap/test/Spec.hs @@ -20,6 +20,7 @@ testHelloWorld :: IO () testHelloWorld = withCurrentDirectory (example_path "hello_world") $ start $ Run { runRelease = False + , runCompiler = "gfortran" , runTarget = Nothing , runArgs = Nothing } @@ -28,6 +29,7 @@ testHelloComplex :: IO () testHelloComplex = withCurrentDirectory (example_path "hello_complex") $ start $ Test { testRelease = False + , testCompiler = "gfortran" , testTarget = Nothing , testArgs = Nothing } @@ -36,6 +38,7 @@ testHelloFpm :: IO () testHelloFpm = withCurrentDirectory (example_path "hello_fpm") $ start $ Run { runRelease = False + , runCompiler = "gfortran" , runTarget = Nothing , runArgs = Nothing } @@ -44,6 +47,7 @@ testCircular :: IO () testCircular = withCurrentDirectory (example_path "circular_example") $ start $ Test { testRelease = False + , testCompiler = "gfortran" , testTarget = Nothing , testArgs = Nothing } @@ -52,12 +56,14 @@ testWithMakefile :: IO () testWithMakefile = withCurrentDirectory (example_path "with_makefile") $ start $ Build { buildRelease = False + , buildCompiler = "gfortran" } testMakefileComplex :: IO () testMakefileComplex = withCurrentDirectory (example_path "makefile_complex") $ start $ Run { runRelease = False + , runCompiler = "gfortran" , runTarget = Nothing , runArgs = Nothing } @@ -66,4 +72,5 @@ testSubmodule :: IO () testSubmodule = withCurrentDirectory (example_path "submodules") $ start $ Build { buildRelease = False + , buildCompiler = "gfortran" } -- cgit v1.2.3