blob: b0685a3c71263e40c8f53ca7d2645172d0a299a1 (
plain) (
blame)
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
|
echo '3 spaces'; false
3 spaces
*** Failed target: fail-spaces
*** Failed command: echo '3 spaces'; false
*** Error code 1 (continuing)
echo \ indented; false
indented
*** Failed target: fail-escaped-space
*** Failed command: echo \ indented; false
*** Error code 1 (continuing)
echo 'line1
line2'; false
line1
line2
*** Failed target: fail-newline
*** Failed command: echo 'line1 line2'; false
*** Error code 1 (continuing)
echo 'line1 line2'; false
line1 line2
*** Failed target: fail-multiline
*** Failed command: echo 'line1 line2'; false
*** Error code 1 (continuing)
echo 'word1' 'word2'; false
word1 word2
*** Failed target: fail-multiline-intention
*** Failed command: echo 'word1' 'word2'; false
*** Error code 1 (continuing)
`all' not remade because of errors.
Stop.
make: stopped making "all" in unit-tests
exit status 1
|