Results for nul-bytes.test.sh

statusdashbashmkshzshashosh
pass 615132139
ok 000414
N-I 901110
BUG-2 001000
BUG 000800
FAIL 000002
total151515151515
casedashbashmkshzshashoshdescription
0N-I pass pass BUG pass pass NUL bytes with echo -e
detailsdetails
1pass pass pass pass pass pass NUL bytes in printf format
2N-I pass pass ok pass ok NUL bytes in printf value (OSH and zsh agree)
detailsdetailsdetails
3N-I pass pass ok pass ok NUL bytes with echo $'\0' (OSH and zsh agree)
detailsdetailsdetails
4N-I pass pass BUG pass pass NUL bytes and IFS splitting
detailsdetails
5N-I pass pass BUG pass ok NUL bytes with test -n
detailsdetailsdetails
6N-I pass pass pass ok FAIL NUL bytes with test -f
detailsdetailsdetails
7N-I pass pass ok pass ok NUL bytes with ${#s} (OSH and zsh agree)
detailsdetailsdetails
8pass pass pass BUG pass pass Compare \x00 byte versus \x01 byte - command sub
details
9pass pass pass BUG pass pass Compare \x00 byte versus \x01 byte - read builtin
details
10N-I pass BUG-2 BUG pass pass Compare \x00 byte versus \x01 byte - read -n
detailsdetailsdetails
11N-I pass N-I N-I N-I FAIL Compare \x00 byte versus \x01 byte - mapfile builtin
detailsdetailsdetailsdetailsdetails
12pass pass pass BUG pass pass Strip ops # ## % %% with NUL bytes
details
13pass pass pass BUG pass pass Issue 2269 Reduction
details
14pass pass pass ok pass pass Issue 2269 - Do NUL bytes match ? in ${a#?}
details
58 passed, 9 OK, 12 not implemented, 9 BUG, 2 failed, 0 timeouts, 0 cases skipped
2 failed under osh

Details on runs that didn't PASS

dash0 NUL bytes with echo -e

stdout:
stderr: 
zsh0 NUL bytes with echo -e

stdout:

stderr:
dash2 NUL bytes in printf value (OSH and zsh agree)

stdout:
stderr: 
zsh2 NUL bytes in printf value (OSH and zsh agree)

stdout:


stderr:
osh2 NUL bytes in printf value (OSH and zsh agree)

stdout:


stderr:
dash3 NUL bytes with echo $'\0' (OSH and zsh agree)

stdout:
stderr: 
zsh3 NUL bytes with echo $'\0' (OSH and zsh agree)

stdout:

stderr:
osh3 NUL bytes with echo $'\0' (OSH and zsh agree)

stdout:

stderr:
dash4 NUL bytes and IFS splitting

stdout:
stderr: 
zsh4 NUL bytes and IFS splitting

stdout:
['', '']
['']
['a', 'b']
['a']
stderr:
dash5 NUL bytes with test -n

stdout:
stderr: 
zsh5 NUL bytes with test -n

stdout:
status=0
status=0
stderr:
osh5 NUL bytes with test -n

stdout:
status=1
status=0
stderr:
dash6 NUL bytes with test -f

stdout:
stderr: 
ash6 NUL bytes with test -f

stdout:
status=1
status=0
status=1
status=1
stderr:
osh6 NUL bytes with test -f

[osh stdout] Expected 'status=1\nstatus=0\nstatus=0\nstatus=1\n', got ''
[osh status] Expected 0, got 1
[osh stderr] Found 'Traceback (most recent'

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/uke/oil/bin/oils_for_unix.py", line 212, in <module>
    sys.exit(main(sys.argv))
  File "/home/uke/oil/bin/oils_for_unix.py", line 181, in main
    return AppBundleMain(argv)
  File "/home/uke/oil/bin/oils_for_unix.py", line 141, in AppBundleMain
    return shell.Main('osh', arg_r, environ, login_shell, loader, readline)
  File "/home/uke/oil/core/shell.py", line 1285, in Main
    cmd_flags=cmd_eval.IsMainProgram)
  File "/home/uke/oil/core/main_loop.py", line 336, in Batch
    was_parsed, status = Batch2(cmd_ev, c_parser, errfmt, cmd_flags=cmd_flags)
  File "/home/uke/oil/core/main_loop.py", line 401, in Batch2
    is_return, is_fatal = cmd_ev.ExecuteAndCatch(node, cmd_flags)
  File "/home/uke/oil/osh/cmd_eval.py", line 2328, in ExecuteAndCatch
    status = self._Execute(node)
  File "/home/uke/oil/osh/cmd_eval.py", line 2127, in _Execute
    status = self._Dispatch(node, cmd_st)
  File "/home/uke/oil/osh/cmd_eval.py", line 1854, in _Dispatch
    status = self._DoSimple(node, cmd_st)
  File "/home/uke/oil/osh/cmd_eval.py", line 1125, in _DoSimple
    status = self._RunSimpleCommand(cmd_val, cmd_st, run_flags)
  File "/home/uke/oil/osh/cmd_eval.py", line 752, in _RunSimpleCommand
    run_flags)
  File "/home/uke/oil/core/vm.py", line 234, in RunSimpleCommand
    run_flags)
  File "/home/uke/oil/core/executor.py", line 572, in _RunSimpleCommand
    return self.RunBuiltin(builtin_id, cmd_val)
  File "/home/uke/oil/core/vm.py", line 252, in RunBuiltin
    return self._RunBuiltinProc(builtin_proc, cmd_val)
  File "/home/uke/oil/core/vm.py", line 262, in _RunBuiltinProc
    status = builtin_proc.Run(cmd_val)
  File "/home/uke/oil/builtin/bracket_osh.py", line 278, in Run
    b = bool_ev.EvalB(bool_node)
  File "/home/uke/oil/osh/sh_expr_eval.py", line 1184, in EvalB
    return bool_stat.DoUnaryOp(op_id, s)
  File "/home/uke/oil/osh/bool_stat.py", line 46, in DoUnaryOp
    st = posix.stat(s)
TypeError: stat() argument 1 must be encoded string without null bytes, not str
dash7 NUL bytes with ${#s} (OSH and zsh agree)

stdout:
stderr: 
zsh7 NUL bytes with ${#s} (OSH and zsh agree)

stdout:
empty=0
nul=1
stderr:
osh7 NUL bytes with ${#s} (OSH and zsh agree)

stdout:
empty=0
nul=1
stderr:
zsh8 Compare \x00 byte versus \x01 byte - command sub

stdout:
len=3
 2e 01 2e
len=3
 2e 00 2e
len=1
 00
stderr:
zsh9 Compare \x00 byte versus \x01 byte - read builtin

stdout:
len=3
 2e 01 2e
len=3
 2e 00 2e
len=1
 00
stderr:
dash10 Compare \x00 byte versus \x01 byte - read -n

stdout:
stderr: 
mksh10 Compare \x00 byte versus \x01 byte - read -n

stdout:
len=3
 2e 01 2e
len=1
 2e
len=0
stderr:
zsh10 Compare \x00 byte versus \x01 byte - read -n

stdout:
len=0
len=1
 2e
len=0
stderr:
dash11 Compare \x00 byte versus \x01 byte - mapfile builtin

stdout:
stderr: 
mksh11 Compare \x00 byte versus \x01 byte - mapfile builtin

stdout:
stderr: 
zsh11 Compare \x00 byte versus \x01 byte - mapfile builtin

stdout:
stderr: 
ash11 Compare \x00 byte versus \x01 byte - mapfile builtin

stdout:
stderr: 
osh11 Compare \x00 byte versus \x01 byte - mapfile builtin

[osh stdout] Expected 'len=2\n 2e\n 2e\n', got 'len=2\n 2e 00 2e\n 2e 00 2e\n'

stdout:
len=2
 2e 00 2e
 2e 00 2e
stderr:
zsh12 Strip ops # ## % %% with NUL bytes

stdout:
len=3
 00 2e 00
---
len=2
 2e 00
len=2
 2e 00
len=2
 00 2e
len=2
 00 2e
stderr:
zsh13 Issue 2269 Reduction

stdout:
len=2
 00 78
len=1
 78
---
len=2
 01 78
len=1
 78
stderr:
zsh14 Issue 2269 - Do NUL bytes match ? in ${a#?}

stdout:
escaped that'"'"'s it!
that's it!
---
writes binary data
stderr:
len=9
len=8
len=7
len=6
len=5
len=4
len=3
len=2
len=1
len=0