...
1# non-verbose, non-continue
2! testscript scripts
3cmpenv stdout expect-stdout.txt
4
5# verbose
6! testscript -v scripts
7cmpenv stdout expect-stdout-v.txt
8
9# continue
10! testscript -continue scripts
11cmpenv stdout expect-stdout-c.txt
12
13# verbose, continue
14! testscript -v -continue scripts
15cmpenv stdout expect-stdout-vc.txt
16
17-- scripts/testscript.txt --
18# comment 1
19printargs section1
20
21# comment 2
22printargs section2
23
24# comment 3
25printargs section3
26status 1
27
28# comment 4
29printargs section3
30
31# comment 5
32printargs section5
33status 1
34
35-- expect-stdout.txt --
36# comment 1 (0.000s)
37# comment 2 (0.000s)
38# comment 3 (0.000s)
39> printargs section3
40[stdout]
41["printargs" "section3"]
42> status 1
43[exit status 1]
44FAIL: $$WORK${/}scripts${/}testscript.txt:9: unexpected command failure
45-- expect-stdout-v.txt --
46# comment 1 (0.000s)
47> printargs section1
48[stdout]
49["printargs" "section1"]
50# comment 2 (0.000s)
51> printargs section2
52[stdout]
53["printargs" "section2"]
54# comment 3 (0.000s)
55> printargs section3
56[stdout]
57["printargs" "section3"]
58> status 1
59[exit status 1]
60FAIL: $$WORK${/}scripts${/}testscript.txt:9: unexpected command failure
61-- expect-stdout-c.txt --
62# comment 1 (0.000s)
63# comment 2 (0.000s)
64# comment 3 (0.000s)
65> printargs section3
66[stdout]
67["printargs" "section3"]
68> status 1
69[exit status 1]
70FAIL: $$WORK${/}scripts${/}testscript.txt:9: unexpected command failure
71# comment 4 (0.000s)
72> printargs section3
73[stdout]
74["printargs" "section3"]
75# comment 5 (0.000s)
76> printargs section5
77[stdout]
78["printargs" "section5"]
79> status 1
80[exit status 1]
81FAIL: $$WORK${/}scripts${/}testscript.txt:16: unexpected command failure
82-- expect-stdout-vc.txt --
83# comment 1 (0.000s)
84> printargs section1
85[stdout]
86["printargs" "section1"]
87# comment 2 (0.000s)
88> printargs section2
89[stdout]
90["printargs" "section2"]
91# comment 3 (0.000s)
92> printargs section3
93[stdout]
94["printargs" "section3"]
95> status 1
96[exit status 1]
97FAIL: $$WORK${/}scripts${/}testscript.txt:9: unexpected command failure
98# comment 4 (0.000s)
99> printargs section3
100[stdout]
101["printargs" "section3"]
102# comment 5 (0.000s)
103> printargs section5
104[stdout]
105["printargs" "section5"]
106> status 1
107[exit status 1]
108FAIL: $$WORK${/}scripts${/}testscript.txt:16: unexpected command failure
View as plain text