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 | 6 | 6 | |
FAIL | 1 | 1 | |
total | 7 | 7 | |
case | osh | osh-cpp | description |
0 | pass | pass | ${#s} and len(s) |
1 | pass | pass | JSON \uXXXX\uYYYY as max code point - can't go above |
2 | pass | pass | Parsing data - J8 rejects \u{110000} |
3 | pass | pass | Parsing source code - YSH rejects \u{110000} |
4 | FAIL | FAIL | Parsing source code - YSH source code rejects encoded string |
details | details | ||
5 | pass | pass | JSON and J8 reject encoded string above max code point |
6 | pass | pass | Max code point: json, json8, = keyword, pp line |
12 passed, 0 OK, 0 not implemented, 0 BUG, 1 failed, 0 timeouts, 0 cases skipped 1 failed under osh
osh | 4 Parsing source code - YSH source code rejects encoded string [osh stdout] Expected '', got '(Str) "\xf4\x8f\xbf\xbf"\nstatus=0\n(Str) b\'\\yf4\\y90\\y80\\y80\'\nstatus=0\n' stdout: (Str) "" status=0 (Str) b'\yf4\y90\y80\y80' status=0stderr: |
osh-cpp | 4 Parsing source code - YSH source code rejects encoded string [osh-cpp stdout] Expected '', got '(Str) "\xf4\x8f\xbf\xbf"\nstatus=0\n(Str) b\'\\yf4\\y90\\y80\\y80\'\nstatus=0\n' stdout: (Str) "" status=0 (Str) b'\yf4\y90\y80\y80' status=0stderr: |