run-file () { local spec_name=$1; shift; local spec_file=spec/$spec_name.test.sh; local suite; suite=$(test/sh_spec.py --print-spec-suite $spec_file); local spec_subdir; case $suite in osh) spec_subdir='osh-cpp' ;; ysh) spec_subdir='ysh-cpp' ;; *) die "Invalid suite $suite" ;; esac; local base_dir=_tmp/spec/$spec_subdir; mkdir -v -p $base_dir; sh-spec $spec_file --timeout 10 --oils-bin-dir $PWD/bin --oils-cpp-bin-dir $REPO_ROOT/_bin/cxx-asan --tsv-output $base_dir/${spec_name}.tsv "$@" } errexit-osh: spec test case results

Results for errexit-osh.test.sh

statusoshosh-cpp
pass 3333
total3333
caseoshosh-cppdescription
0pass pass command sub: errexit is NOT inherited and outer shell keeps going
1pass pass command sub with inherit_errexit only
2pass pass strict_errexit and assignment builtins (local, export, readonly ...)
3pass pass strict_errexit and command sub in export / readonly
4pass pass strict_errexit disallows pipeline
5pass pass strict_errexit allows singleton pipeline
6pass pass strict_errexit without errexit proc
7pass pass strict_errexit without errexit proc / command sub
8pass pass strict_errexit and errexit disabled
9pass pass command sub with command_sub_errexit only
10pass pass command_sub_errexit stops at first error
11pass pass command sub with inherit_errexit and command_sub_errexit
12pass pass command sub: last command fails but keeps going and exit code is 0
13pass pass global assignment with command sub: middle command fails
14pass pass global assignment with command sub: last command fails and it aborts
15pass pass local: middle command fails and keeps going
16pass pass local: last command fails and also keeps going
17pass pass local and inherit_errexit / command_sub_errexit
18pass pass global assignment when last status is failure
19pass pass strict_errexit prevents errexit from being disabled in function
20pass pass strict_errexit prevents errexit from being disabled in brace group
21pass pass strict_errexit prevents errexit from being disabled in subshell
22pass pass strict_errexit and ! && || if while until
23pass pass if pipeline doesn't fail fatally
24pass pass errexit is silent (verbose_errexit for Oil)
25pass pass command sub errexit preserves exit code
26pass pass What's in strict:all?
27pass pass command_sub_errexit causes local d=$(date %x) to fail
28pass pass command_sub_errexit and command sub in array
29pass pass OLD: command sub in conditional, with inherit_errexit
30pass pass OLD: command sub in redirect in conditional
31pass pass Regression
32pass pass ShAssignment used as conditional
66 passed, 0 OK, 0 not implemented, 0 BUG, 0 failed, 0 timeouts, 0 cases skipped