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
33
34
35
36
37
38
39
40
41
|
test('sigof02',
[ clean_cmd('rm -rf tmp_sigof02') ],
run_command,
['$MAKE -s --no-print-directory sigof02'])
test('sigof02t',
[ expect_broken(10472), clean_cmd('rm -rf tmp_sigof02t') ],
run_command,
['$MAKE -s --no-print-directory sigof02t'])
test('sigof02m',
[ clean_cmd('rm -rf tmp_sigof02m') ],
run_command,
['$MAKE -s --no-print-directory sigof02m'])
test('sigof02mt',
[ expect_broken(10472), clean_cmd('rm -rf tmp_sigof02mt') ],
run_command,
['$MAKE -s --no-print-directory sigof02mt'])
test('sigof02d',
[ clean_cmd('rm -rf tmp_sigof02d') ],
run_command,
['$MAKE -s --no-print-directory sigof02d'])
test('sigof02dt',
[ expect_broken(10472), clean_cmd('rm -rf tmp_sigof02dt') ],
run_command,
['$MAKE -s --no-print-directory sigof02dt'])
test('sigof02dm',
[ clean_cmd('rm -rf tmp_sigof02dm') ],
run_command,
['$MAKE -s --no-print-directory sigof02dm'])
test('sigof02dmt',
[ expect_broken(10472), clean_cmd('rm -rf tmp_sigof02dmt') ],
run_command,
['$MAKE -s --no-print-directory sigof02dmt'])
|