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/layout/all.T | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'testsuite/tests/layout') diff --git a/testsuite/tests/layout/all.T b/testsuite/tests/layout/all.T index cde69bfa1b..8826bf9f7b 100644 --- a/testsuite/tests/layout/all.T +++ b/testsuite/tests/layout/all.T @@ -1,19 +1,18 @@ -test('layout001', [], run_command, ['$MAKE -s --no-print-directory layout001']) +test('layout001', [], makefile_test, ['layout001']) -test('layout002', [], run_command, ['$MAKE -s --no-print-directory layout002']) +test('layout002', [], makefile_test, ['layout002']) -test('layout003', [], run_command, ['$MAKE -s --no-print-directory layout003']) +test('layout003', [], makefile_test, ['layout003']) -test('layout004', [], run_command, ['$MAKE -s --no-print-directory layout004']) +test('layout004', [], makefile_test, ['layout004']) -test('layout005', [], run_command, ['$MAKE -s --no-print-directory layout005']) +test('layout005', [], makefile_test, ['layout005']) -test('layout006', [], run_command, ['$MAKE -s --no-print-directory layout006']) +test('layout006', [], makefile_test, ['layout006']) -test('layout007', [req_interp], run_command, - ['$MAKE -s --no-print-directory layout007']) +test('layout007', [req_interp], makefile_test, ['layout007']) -test('layout008', [], run_command, ['$MAKE -s --no-print-directory layout008']) +test('layout008', [], makefile_test, ['layout008']) -test('layout009', [], run_command, ['$MAKE -s --no-print-directory layout009']) +test('layout009', [], makefile_test, ['layout009']) -- cgit v1.2.1