1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
test('driver011', normal, run_command_ignore_output, ['$MAKE test011'])
test('driver012', normal, run_command_ignore_output, ['$MAKE test012'])
test('driver013', normal, run_command_ignore_output, ['$MAKE test013'])
test('driver014', normal, run_command_ignore_output, ['$MAKE test014'])
test('driver015', normal, run_command_ignore_output, ['$MAKE test015'])
test('driver021', normal, run_command_ignore_output, ['$MAKE test021'])
test('driver022', normal, run_command_ignore_output, ['$MAKE test022'])
test('driver023', normal, run_command_ignore_output, ['$MAKE test023'])
test('driver024', normal, run_command_ignore_output, ['$MAKE test024'])
test('driver025', normal, run_command_ignore_output, ['$MAKE test025'])
test('driver026', normal, run_command_ignore_output, ['$MAKE test026'])
test('driver031', normal, run_command_ignore_output, ['$MAKE test031'])
test('driver032', normal, run_command_ignore_output, ['$MAKE test032'])
test('driver033', normal, run_command_ignore_output, ['$MAKE test033'])
test('driver041', normal, run_command_ignore_output, ['$MAKE test041'])
test('driver042', normal, run_command_ignore_output, ['$MAKE test042'])
test('driver043', normal, run_command_ignore_output, ['$MAKE test043'])
test('driver051', normal, run_command_ignore_output, ['$MAKE test051'])
test('driver052', normal, run_command_ignore_output, ['$MAKE test052'])
test('driver053', normal, run_command_ignore_output, ['$MAKE test053'])
test('driver060', normal, run_command_ignore_output, ['$MAKE test060'])
test('driver061', normal, run_command_ignore_output, ['$MAKE test061'])
test('driver062', normal, run_command_ignore_output, ['$MAKE test062'])
test('driver063', normal, run_command, ['$MAKE -s test063'])
clean(['B/C.hi', 'B/C.o', 'B/C.ooo', 'B/C.xhi', 'd1/P/Q.o', 'd2/R/S.o',
'A.ooo', 'A.xhi', 'Hello.hi', 'Hello.o', 'hello'])
if default_testopts.cleanup != '':
os.spawnlp(os.P_WAIT, 'rm', 'rm', '-rf', in_testdir('obj'))
os.spawnlp(os.P_WAIT, 'rm', 'rm', '-rf', in_testdir('hi'))
|