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 | 5 | 5 | |
N-I | 4 | 4 | |
total | 9 | 9 | |
case | osh | osh-cpp | description |
0 | pass | pass | ${##} |
1 | N-I | N-I | ${###} |
details | details | ||
2 | N-I | N-I | ${####} |
details | details | ||
3 | N-I | N-I | ${##2} |
details | details | ||
4 | N-I | N-I | ${###2} |
details | details | ||
5 | pass | pass | ${1####} |
6 | pass | pass | ${1#'###'} |
7 | pass | pass | ${#1#'###'} |
8 | pass | pass | Julia example from spec/oil-user-feedback |
10 passed, 0 OK, 8 not implemented, 0 BUG, 0 failed, 0 timeouts, 0 cases skipped
osh | 1 ${###} stdout: stderr: echo ${###} ^ [ stdin ]:2: Expected } after length expression |
osh-cpp | 1 ${###} stdout: stderr: echo ${###} ^ [ stdin ]:2: Expected } after length expression |
osh | 2 ${####} stdout: stderr: echo ${####} ^~ [ stdin ]:2: Expected } after length expression |
osh-cpp | 2 ${####} stdout: stderr: echo ${####} ^~ [ stdin ]:2: Expected } after length expression |
osh | 3 ${##2} stdout: stderr: echo ${##2} ^ [ stdin ]:2: Expected } after length expression |
osh-cpp | 3 ${##2} stdout: stderr: echo ${##2} ^ [ stdin ]:2: Expected } after length expression |
osh | 4 ${###2} stdout: stderr: echo ${###2} ^ [ stdin ]:2: Expected } after length expression |
osh-cpp | 4 ${###2} stdout: stderr: echo ${###2} ^ [ stdin ]:2: Expected } after length expression |