1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
test('T7962', req_interp, run_command,
['$MAKE --no-print-directory -s T7962'])
test('T9905fail1', req_interp, run_command,
['$MAKE --no-print-directory -s T9905fail1'])
test('T9905fail2', req_interp, run_command,
['$MAKE --no-print-directory -s T9905fail2'])
test('T9905fail3', req_interp, run_command,
['$MAKE --no-print-directory -s T9905fail3'])
test('ghc-e-fail1', req_interp, run_command,
['$MAKE --no-print-directory -s ghc-e-fail1'])
test('ghc-e-fail2', req_interp, run_command,
['$MAKE --no-print-directory -s ghc-e-fail2'])
# Don't run on Windows, as executable is written to T9930.exe
# and no failure is induced.
test('T9930fail', [extra_files(['T9930']), when(opsys('mingw32'), skip)],
run_command,
['$MAKE --no-print-directory -s T9930fail'])
|