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/rename/should_compile | |
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/rename/should_compile')
-rw-r--r-- | testsuite/tests/rename/should_compile/all.T | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/testsuite/tests/rename/should_compile/all.T b/testsuite/tests/rename/should_compile/all.T index a7c8da4671..0c60360e17 100644 --- a/testsuite/tests/rename/should_compile/all.T +++ b/testsuite/tests/rename/should_compile/all.T @@ -99,17 +99,16 @@ test('timing001', normal, compile, ['']) test('timing002', normal, compile, ['']) test('timing003', normal, compile, ['']) -test('T1792_imports', [], run_command, - ['$MAKE -s --no-print-directory T1792_imports']) +test('T1792_imports', [], makefile_test, ['T1792_imports']) -test('T3823', [], run_command, ['$MAKE -s --no-print-directory T3823']) +test('T3823', [], makefile_test, ['T3823']) -test('T4003', [], run_command, ['$MAKE -s --no-print-directory T4003']) +test('T4003', [], makefile_test, ['T4003']) test('T1789', normal, compile, ['']) test('T1789_2', normal, compile, ['']) -test('T3449', [], run_command, ['$MAKE -s --no-print-directory T3449']) -test('T4239', [], run_command, ['$MAKE -s --no-print-directory T4239']) -test('T4240', [], run_command, ['$MAKE -s --no-print-directory T4240']) +test('T3449', [], makefile_test, ['T3449']) +test('T4239', [], makefile_test, ['T4239']) +test('T4240', [], makefile_test, ['T4240']) test('T4489', normal, compile, ['']) test('T4478', normal, compile, ['']) @@ -138,8 +137,8 @@ test('T7336', expect_broken(7336), compile, ['-Wall']) test('T2435', normal, multimod_compile, ['T2435','-v0']) test('T7672', normal, multimod_compile, ['T7672','-v0']) -test('T7963', [], run_command, ['$MAKE -s --no-print-directory T7963']) -test('T7969', [], run_command, ['$MAKE -s --no-print-directory T7969']) +test('T7963', [], makefile_test, ['T7963']) +test('T7969', [], makefile_test, ['T7969']) test('T9127', normal, compile, ['']) test('T4426', normal, compile_fail, ['']) test('T9778', normal, compile, ['-fwarn-unticked-promoted-constructors']) @@ -162,7 +161,7 @@ test('T14487', [], multimod_compile, ['T14487', '-v0']) test('T14747', [], multimod_compile, ['T14747', '-v0']) test('T15149', [], multimod_compile, ['T15149', '-v0']) test('T13064', normal, compile, ['']) -test('T15994', [], run_command, ['$MAKE -s --no-print-directory T15994']) +test('T15994', [], makefile_test, ['T15994']) test('T15798a', normal, compile, ['']) test('T15798b', normal, compile, ['']) test('T15798c', normal, compile, ['']) |