From 513a449c9dd10887d6dc757d55286749b2594b09 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Sun, 20 Jan 2019 23:46:13 -0500 Subject: testsuite: Use makefile_test This eliminates most uses of run_command in the testsuite in favor of the more structured makefile_test. --- testsuite/tests/dynlibs/all.T | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'testsuite/tests/dynlibs/all.T') 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, []) -- cgit v1.2.1