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 pass Octal literals with -eq
details
15pass N-I pass Hex literals with -eq
details
16pass pass pass > on strings
17pass pass pass != on strings
18ok ok pass -eq on strings
detailsdetails
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 pass Argument that looks like a command word operator
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
33pass pass FAIL -eq with arithmetic expression!
details
34pass pass pass -eq coercion produces weird results

92 passed, 4 ok, 4 known unimplemented, 0 known bugs, 5 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 'NO precedence\n', got 'YES\n'

stdout:
YES
stderr:
mksh14 Octal literals with -eq

stdout:
false
stderr:
mksh15 Hex literals with -eq

stdout:
false
stderr:
/bin/mksh: <stdin>[3]: 0x0f: bad number '0x0f'
bash18 -eq on strings

stdout:
true
true
stderr:
mksh18 -eq on strings

stdout:
true
true
stderr:
mksh21 [[ with op variable

stdout:
stderr: 
/bin/mksh: <stdin>[2]: syntax error: '$op' unexpected operator/operand
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 430, in <module>
    main(sys.argv)
  File "bin/osh", line 417, in main
    sys.exit(OilMain(argv))
  File "bin/osh", line 400, in OilMain
    status = OshMain(main_argv)
  File "bin/osh", line 359, in OshMain
    status = ex.Execute(node)
  File "/home/andy/git/oil/bin/../core/cmd_exec.py", line 1212, in Execute
    status = self._Execute(node)
  File "/home/andy/git/oil/bin/../core/cmd_exec.py", line 1009, in _Execute
    result = bool_ev.Eval(node.expr)
  File "/home/andy/git/oil/bin/../core/expr_eval.py", line 129, in Eval
    return self._Eval(node)
  File "/home/andy/git/oil/bin/../core/expr_eval.py", line 288, in _Eval
    s = self._EvalCompoundWord(node.child)
  File "/home/andy/git/oil/bin/../core/expr_eval.py", line 259, in _EvalCompoundWord
    val = self.word_ev.EvalWordToString(word, do_fnmatch=do_fnmatch)
  File "/home/andy/git/oil/bin/../core/word_eval.py", line 871, in EvalWordToString
    for part in word.parts:
AttributeError: 'TokenWord' object has no attribute 'parts'
osh30 Does user array equal "$@" ?

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

stdout:
stderr: 
Traceback (most recent call last):
  File "bin/osh", line 430, in <module>
    main(sys.argv)
  File "bin/osh", line 417, in main
    sys.exit(OilMain(argv))
  File "bin/osh", line 400, in OilMain
    status = OshMain(main_argv)
  File "bin/osh", line 359, in OshMain
    status = ex.Execute(node)
  File "/home/andy/git/oil/bin/../core/cmd_exec.py", line 1212, in Execute
    status = self._Execute(node)
  File "/home/andy/git/oil/bin/../core/cmd_exec.py", line 1057, in _Execute
    status = self._Execute(child)  # last status wins
  File "/home/andy/git/oil/bin/../core/cmd_exec.py", line 1064, in _Execute
    status = self._Execute(left)
  File "/home/andy/git/oil/bin/../core/cmd_exec.py", line 1009, in _Execute
    result = bool_ev.Eval(node.expr)
  File "/home/andy/git/oil/bin/../core/expr_eval.py", line 129, in Eval
    return self._Eval(node)
  File "/home/andy/git/oil/bin/../core/expr_eval.py", line 317, in _Eval
    s1 = self._EvalCompoundWord(node.left)
  File "/home/andy/git/oil/bin/../core/expr_eval.py", line 259, in _EvalCompoundWord
    val = self.word_ev.EvalWordToString(word, do_fnmatch=do_fnmatch)
  File "/home/andy/git/oil/bin/../core/word_eval.py", line 875, in EvalWordToString
    self._AddErrorContext("Only string parts are allowed", word=word)
TypeError: _AddErrorContext() got an unexpected keyword argument 'word'
osh31 Array coerces to string

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

stdout:
stderr: 
Traceback (most recent call last):
  File "bin/osh", line 430, in <module>
    main(sys.argv)
  File "bin/osh", line 417, in main
    sys.exit(OilMain(argv))
  File "bin/osh", line 400, in OilMain
    status = OshMain(main_argv)
  File "bin/osh", line 359, in OshMain
    status = ex.Execute(node)
  File "/home/andy/git/oil/bin/../core/cmd_exec.py", line 1212, in Execute
    status = self._Execute(node)
  File "/home/andy/git/oil/bin/../core/cmd_exec.py", line 1057, in _Execute
    status = self._Execute(child)  # last status wins
  File "/home/andy/git/oil/bin/../core/cmd_exec.py", line 1064, in _Execute
    status = self._Execute(left)
  File "/home/andy/git/oil/bin/../core/cmd_exec.py", line 1009, in _Execute
    result = bool_ev.Eval(node.expr)
  File "/home/andy/git/oil/bin/../core/expr_eval.py", line 129, in Eval
    return self._Eval(node)
  File "/home/andy/git/oil/bin/../core/expr_eval.py", line 321, in _Eval
    s2 = self._EvalCompoundWord(node.right, do_fnmatch=do_fnmatch)
  File "/home/andy/git/oil/bin/../core/expr_eval.py", line 259, in _EvalCompoundWord
    val = self.word_ev.EvalWordToString(word, do_fnmatch=do_fnmatch)
  File "/home/andy/git/oil/bin/../core/word_eval.py", line 875, in EvalWordToString
    self._AddErrorContext("Only string parts are allowed", word=word)
TypeError: _AddErrorContext() got an unexpected keyword argument 'word'
osh33 -eq with arithmetic expression!

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

stdout:
stderr: 
osh warning: Invalid integer constant '1+2'
osh warning: Invalid integer constant '1+2'