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/dynlibs | |
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/dynlibs')
-rw-r--r-- | testsuite/tests/dynlibs/all.T | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/testsuite/tests/dynlibs/all.T b/testsuite/tests/dynlibs/all.T index 88ce37f445..aaa7a62774 100644 --- a/testsuite/tests/dynlibs/all.T +++ b/testsuite/tests/dynlibs/all.T @@ -1,13 +1,9 @@ -test('T3807', [req_shared_libs, when(opsys('mingw32'), skip)], run_command, - ['$MAKE --no-print-directory -s T3807']) +test('T3807', [req_shared_libs, when(opsys('mingw32'), skip)], makefile_test, []) -test('T4464', [req_shared_libs, unless(opsys('mingw32'), skip)], run_command, - ['$MAKE --no-print-directory -s T4464']) +test('T4464', [req_shared_libs, unless(opsys('mingw32'), skip)], makefile_test, []) -test('T5373', [req_shared_libs], run_command, - ['$MAKE --no-print-directory -s T5373']) +test('T5373', [req_shared_libs], makefile_test, []) # It's not clear exactly what platforms we can expect this to succeed on. -test('T13702', unless(opsys('linux'), skip), run_command, - ['$MAKE --no-print-directory -s T13702']) +test('T13702', unless(opsys('linux'), skip), makefile_test, []) |