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 "$@" }
spec test index / oilshell.org
status | osh | osh-cpp | |
pass | 18 | 18 | |
total | 18 | 18 | |
case | osh | osh-cpp | description |
0 | pass | pass | cd accepts a block, runs it in different dir |
1 | pass | pass | cd with block: requires explicit command |
2 | pass | pass | cd with block: fatal error in block |
3 | pass | pass | cd with block: return in block |
4 | pass | pass | cd with block: break in block |
5 | pass | pass | cd with block exits with status 0 |
6 | pass | pass | block doesn't have its own scope |
7 | pass | pass | redirects allowed in words, typed args, and after block |
8 | pass | pass | block literal in expression mode: ^(echo $PWD) |
9 | pass | pass | block arg as typed expression |
10 | pass | pass | Pass invalid typed args |
11 | pass | pass | Pass too many typed args |
12 | pass | pass | 'builtin' and 'command' with block |
13 | pass | pass | Consistency: Control Flow and Blocks |
14 | pass | pass | Consistency: Exit Status and Blocks |
15 | pass | pass | Consistency: Unwanted Blocks Are Errors |
16 | pass | pass | Block with Bare Assignments |
17 | pass | pass | Proc that doesn't take a block |
36 passed, 0 OK, 0 not implemented, 0 BUG, 0 failed, 0 timeouts, 0 cases skipped