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 | 11 | 11 | |
FAIL | 1 | 1 | |
total | 12 | 12 | |
case | osh | osh-cpp | description |
0 | pass | pass | Case statement |
1 | pass | pass | Case statement with ;;& |
2 | pass | pass | Case statement with ;& |
3 | pass | pass | Case with empty condition |
4 | pass | pass | Match a literal with a glob character |
5 | pass | pass | Match a literal with a glob character with a dynamic pattern |
6 | pass | pass | Quoted literal in glob pattern |
7 | pass | pass | Multiple Patterns Match |
8 | pass | pass | Pattern ? matches 1 code point (many bytes), but not multiple code points |
9 | FAIL | FAIL | case with single byte LC_ALL=C |
details | details | ||
10 | pass | pass | \(\) in pattern (regression) |
11 | pass | pass | case \n bug regression |
22 passed, 0 OK, 0 not implemented, 0 BUG, 1 failed, 0 timeouts, 0 cases skipped 1 failed under osh
osh | 9 case with single byte LC_ALL=C [osh stdout] Expected 'b\n', got 'a\n' stdout: astderr: |
osh-cpp | 9 case with single byte LC_ALL=C [osh-cpp stdout] Expected 'b\n', got 'a\n' stdout: astderr: |