diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-01-20 23:46:13 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-01-30 10:06:31 -0500 |
commit | 513a449c9dd10887d6dc757d55286749b2594b09 (patch) | |
tree | 2c7e4be10c5b676885932789457f64738748db2e /testsuite/tests/ghc-api/all.T | |
parent | bdb559a60a18318b6130f399f158739118237f9b (diff) | |
download | haskell-513a449c9dd10887d6dc757d55286749b2594b09.tar.gz |
testsuite: Use makefile_test
This eliminates most uses of run_command in the testsuite in favor of the more
structured makefile_test.
Diffstat (limited to 'testsuite/tests/ghc-api/all.T')
-rw-r--r-- | testsuite/tests/ghc-api/all.T | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/testsuite/tests/ghc-api/all.T b/testsuite/tests/ghc-api/all.T index 377c1e3987..b4e24ec2fd 100644 --- a/testsuite/tests/ghc-api/all.T +++ b/testsuite/tests/ghc-api/all.T @@ -1,15 +1,11 @@ test('ghcApi', normal, compile_and_run, ['-package ghc']) -test('T6145', normal, - run_command, - ['$MAKE -s --no-print-directory T6145']) +test('T6145', normal, makefile_test, ['T6145']) test('T8639_api', when(arch('powerpc64') or arch('powerpc64le'), expect_broken(11259)), - run_command, - ['$MAKE -s --no-print-directory T8639_api']) + makefile_test, ['T8639_api']) test('T8628', when(arch('powerpc64') or arch('powerpc64le'), expect_broken(11259)), - run_command, - ['$MAKE -s --no-print-directory T8628']) + makefile_test, ['T8628']) test('T9595', extra_run_opts('"' + config.libdir + '"'), compile_and_run, ['-package ghc']) |