File: multi.txt

package info (click to toggle)
golang-github-rogpeppe-go-internal 1.14.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,188 kB
  • sloc: makefile: 6
file content (16 lines) | stat: -rw-r--r-- 315 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Check that all scripts are executed even when one fails.

! testscript a.txt b.txt
cmp stdout want-stdout
-- want-stdout --
> exec false
[exit status 1]
FAIL: a.txt:1: unexpected command failure
> exec false
[exit status 1]
FAIL: b.txt:2: unexpected command failure
-- a.txt --
exec false
-- b.txt --

exec false