Results for dbracket.test.sh

casebashmkshoshdescription
0pass pass pass [[ glob matching, [[ has no glob expansion
1pass pass pass [[ glob matching with escapes
2pass pass pass equality
3pass pass pass [[ glob matching with unquoted var
4pass N-I pass [[ regex matching
details
5pass N-I pass [[ regex syntax error
details
6pass pass pass [[ has no word splitting
7pass pass pass [[ has quote joining
8pass pass pass [[ empty string is false
9pass pass pass && chain
10pass pass pass || chain
11pass pass pass [[ compound expressions
12pass pass pass precedence of && and || inside [[
13pass pass FAIL precedence of && and || in a command context
details
14pass N-I FAIL Octal literals with -eq
detailsdetails
15pass N-I FAIL Hex literals with -eq
detailsdetails
16pass pass pass > on strings
17pass pass pass != on strings
18ok ok FAIL -eq on strings
detailsdetailsdetails
19pass pass pass [[ compare with literal -f
20pass pass pass [ compare with literal -f
21pass ok pass [[ with op variable
details
22pass pass pass [ with op variable
23pass pass pass [[ with unquoted empty var
24pass pass pass [ with unquoted empty var
25pass pass pass [[ at runtime doesn't work
26pass pass pass [[ with env prefix doesn't work
27pass pass pass [[ over multiple lines is OK
28pass pass FAIL Argument that looks like a command word operator
details
29pass ok FAIL Argument that looks like a real operator
detailsdetails
30pass pass FAIL Does user array equal "$@" ?
details
31pass pass FAIL Array coerces to string
details
32pass pass pass Quotes don't matter in comparison

83 passed, 4 ok, 4 known unimplemented, 0 known bugs, 8 failed, 0 skipped

Details on runs that didn't PASS

mksh4 [[ regex matching

stdout:
stderr: 
/bin/mksh: <stdin>[2]: syntax error: '=~' unexpected operator/operand
mksh5 [[ regex syntax error

stdout:
stderr: 
/bin/mksh: <stdin>[1]: syntax error: '=~' unexpected operator/operand
osh13 precedence of && and || in a command context

[osh stdout] Expected b'NO precedence\n', got b'YES\n'

stdout:
YES
stderr:
mksh14 Octal literals with -eq

stdout:
false
stderr:
osh14 Octal literals with -eq

[osh stdout] Expected b'true\nfalse\n', got b''

stdout:
stderr: 
Traceback (most recent call last):
  File "bin/osh", line 378, in <module>
    sys.exit(main(sys.argv))
  File "bin/osh", line 368, in main
    return OshMain(main_argv)
  File "bin/osh", line 327, in OshMain
    status, cflow = ex.Execute(node)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 758, in Execute
    status, cflow = self.Execute(child)  # last status wins
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 765, in Execute
    status, cflow = self.Execute(left)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 719, in Execute
    raise AssertionError('Error evaluating boolean: %s' % bool_ev.Error())
AssertionError: Error evaluating boolean: ["Invalid integer: invalid literal for int() with base 10: 'ZZZ017'"]
mksh15 Hex literals with -eq

stdout:
false
stderr:
/bin/mksh: <stdin>[3]: 0x0f: bad number '0x0f'
osh15 Hex literals with -eq

[osh stdout] Expected b'true\nfalse\n', got b''

stdout:
stderr: 
Traceback (most recent call last):
  File "bin/osh", line 378, in <module>
    sys.exit(main(sys.argv))
  File "bin/osh", line 368, in main
    return OshMain(main_argv)
  File "bin/osh", line 327, in OshMain
    status, cflow = ex.Execute(node)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 758, in Execute
    status, cflow = self.Execute(child)  # last status wins
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 765, in Execute
    status, cflow = self.Execute(left)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 719, in Execute
    raise AssertionError('Error evaluating boolean: %s' % bool_ev.Error())
AssertionError: Error evaluating boolean: ["Invalid integer: invalid literal for int() with base 10: '0x0f'"]
bash18 -eq on strings

stdout:
true
true
stderr:
mksh18 -eq on strings

stdout:
true
true
stderr:
osh18 -eq on strings

[osh stdout] Expected b'true\ntrue\n', got b''

stdout:
stderr: 
Traceback (most recent call last):
  File "bin/osh", line 378, in <module>
    sys.exit(main(sys.argv))
  File "bin/osh", line 368, in main
    return OshMain(main_argv)
  File "bin/osh", line 327, in OshMain
    status, cflow = ex.Execute(node)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 758, in Execute
    status, cflow = self.Execute(child)  # last status wins
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 765, in Execute
    status, cflow = self.Execute(left)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 719, in Execute
    raise AssertionError('Error evaluating boolean: %s' % bool_ev.Error())
AssertionError: Error evaluating boolean: ["Invalid integer: invalid literal for int() with base 10: 'a'"]
mksh21 [[ with op variable

stdout:
stderr: 
/bin/mksh: <stdin>[2]: syntax error: '$op' unexpected operator/operand
osh28 Argument that looks like a command word operator

[osh stdout] Expected b'false\nfalse\n', got b''

stdout:
stderr: 
Traceback (most recent call last):
  File "/mnt/big/home/andy/git/oil/bin/../core/expr_eval.py", line 315, in _Eval
    mode = os.stat(s).st_mode
OSError: [Errno 2] No such file or directory: '-f'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "bin/osh", line 378, in <module>
    sys.exit(main(sys.argv))
  File "bin/osh", line 368, in main
    return OshMain(main_argv)
  File "bin/osh", line 327, in OshMain
    status, cflow = ex.Execute(node)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 758, in Execute
    status, cflow = self.Execute(child)  # last status wins
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 765, in Execute
    status, cflow = self.Execute(left)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 715, in Execute
    ok = bool_ev.Eval(node.expr)
  File "/mnt/big/home/andy/git/oil/bin/../core/expr_eval.py", line 64, in Eval
    result = self._Eval(node)
  File "/mnt/big/home/andy/git/oil/bin/../core/expr_eval.py", line 316, in _Eval
    except FileNotFoundError as e:
NameError: global name 'FileNotFoundError' is not defined
mksh29 Argument that looks like a real operator

stdout:
stderr: 
/bin/mksh: <stdin>[1]: syntax error: '-f' missing argument
osh29 Argument that looks like a real operator

[osh status] Expected 2, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "bin/osh", line 378, in <module>
    sys.exit(main(sys.argv))
  File "bin/osh", line 368, in main
    return OshMain(main_argv)
  File "bin/osh", line 327, in OshMain
    status, cflow = ex.Execute(node)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 715, in Execute
    ok = bool_ev.Eval(node.expr)
  File "/mnt/big/home/andy/git/oil/bin/../core/expr_eval.py", line 64, in Eval
    result = self._Eval(node)
  File "/mnt/big/home/andy/git/oil/bin/../core/expr_eval.py", line 309, in _Eval
    s = self._EvalCompoundWord(node.child)
  File "/mnt/big/home/andy/git/oil/bin/../core/expr_eval.py", line 273, in _EvalCompoundWord
    elide_empty=False)
  File "/mnt/big/home/andy/git/oil/bin/../core/word_eval.py", line 573, in EvalCompoundWord
    assert isinstance(word, ast.CompoundWord), "Expected CompoundWord, got %s" % word
AssertionError: Expected CompoundWord, got (TokenWord token:(token id:Redir_Less val:"<" span_id:4))
osh30 Does user array equal "$@" ?

[osh stdout] Expected b'true\nfalse\n', got b''

stdout:
stderr: 
Traceback (most recent call last):
  File "bin/osh", line 378, in <module>
    sys.exit(main(sys.argv))
  File "bin/osh", line 368, in main
    return OshMain(main_argv)
  File "bin/osh", line 327, in OshMain
    status, cflow = ex.Execute(node)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 758, in Execute
    status, cflow = self.Execute(child)  # last status wins
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 765, in Execute
    status, cflow = self.Execute(left)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 715, in Execute
    ok = bool_ev.Eval(node.expr)
  File "/mnt/big/home/andy/git/oil/bin/../core/expr_eval.py", line 64, in Eval
    result = self._Eval(node)
  File "/mnt/big/home/andy/git/oil/bin/../core/expr_eval.py", line 338, in _Eval
    s1 = self._EvalCompoundWord(node.left)
  File "/mnt/big/home/andy/git/oil/bin/../core/expr_eval.py", line 279, in _EvalCompoundWord
    raise ExprEvaluator("Expected string, got array")
TypeError: __init__() takes exactly 3 arguments (2 given)
osh31 Array coerces to string

[osh stdout] Expected b'true\nfalse\n', got b''

stdout:
stderr: 
Traceback (most recent call last):
  File "bin/osh", line 378, in <module>
    sys.exit(main(sys.argv))
  File "bin/osh", line 368, in main
    return OshMain(main_argv)
  File "bin/osh", line 327, in OshMain
    status, cflow = ex.Execute(node)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 758, in Execute
    status, cflow = self.Execute(child)  # last status wins
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 765, in Execute
    status, cflow = self.Execute(left)
  File "/mnt/big/home/andy/git/oil/bin/../core/cmd_exec.py", line 715, in Execute
    ok = bool_ev.Eval(node.expr)
  File "/mnt/big/home/andy/git/oil/bin/../core/expr_eval.py", line 64, in Eval
    result = self._Eval(node)
  File "/mnt/big/home/andy/git/oil/bin/../core/expr_eval.py", line 342, in _Eval
    s2 = self._EvalCompoundWord(node.right, do_glob=do_glob)
  File "/mnt/big/home/andy/git/oil/bin/../core/expr_eval.py", line 279, in _EvalCompoundWord
    raise ExprEvaluator("Expected string, got array")
TypeError: __init__() takes exactly 3 arguments (2 given)