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 | 10 | 10 | |
| FAIL | 1 | 1 | |
| total | 11 | 11 | |
| case | osh | osh-cpp | description | 
| 0 | pass | pass | Splice in array | 
| 1 | pass | pass | Assoc array can't be spliced directly | 
| 2 | pass | pass | Can't splice string | 
| 3 | pass | pass | Can't splice undefined | 
| 4 | pass | pass | echo $[f(x)] for various types | 
| 5 | pass | pass | echo $f (x) with space is runtime error | 
| 6 | pass | pass | echo @f (x) with space is runtime error | 
| 7 | pass | pass | echo $x for various types | 
| 8 | pass | pass | Wrong sigil with $range() is runtime error | 
| 9 | FAIL | FAIL | Serializing type in a list | 
| details | details | ||
| 10 | pass | pass | Wrong sigil @[max(3, 4)] | 
20 passed, 0 OK, 0 not implemented, 0 BUG, 1 failed, 0 timeouts, 0 cases skipped 1 failed under osh
| osh | 9 Serializing type in a list [osh status] Expected 3, got 1 stdout: 3 true ___stderr:   var list2 = [List]
               ^~~~
[ stdin ]:9: fatal: Undefined variable 'List'
 | 
| osh-cpp | 9 Serializing type in a list [osh-cpp status] Expected 3, got 1 stdout: 3 true ___stderr:   var list2 = [List]
               ^~~~
[ stdin ]:9: fatal: Undefined variable 'List'
 |