Results for glob.test.sh

casedashbashmkshashoshosh_ALTdescription
0pass pass pass pass pass pass glob double quote escape
1pass pass pass pass pass pass glob single quote escape
2pass pass pass pass pass pass glob backslash escape
3pass pass pass pass pass pass 1 char glob
4pass pass pass pass pass pass 0 char glob -- does NOT work
5pass pass pass pass pass pass looks like glob at the start, but isn't
6pass pass pass pass pass pass looks like glob plus negation at the start, but isn't
7pass pass pass pass pass pass glob can expand to command and arg
8pass pass pass pass pass pass glob after var expansion
9pass pass pass pass pass pass quoted var expansion with glob meta characters
10pass pass pass pass pass pass glob after "$@" expansion
11pass pass pass pass pass pass glob after $@ expansion
12pass pass pass pass pass pass no glob after ~ expansion
13N-I pass pass N-I pass pass store literal globs in array then expand
detailsdetails
14N-I pass pass N-I pass pass glob inside array
detailsdetails
15pass pass pass pass pass pass glob with escaped - in char class
16pass pass BUG pass pass pass glob with char class expression
details
17pass pass pass pass pass pass glob double quotes
18pass pass pass pass pass pass glob escaped
19pass pass BUG pass pass pass : escaped
details
20pass BUG pass pass pass pass Redirect to glob, not evaluated
details
21pass pass pass pass pass pass Glob after var manipulation
22pass pass pass pass pass pass Glob after part joining
23pass pass pass pass pass pass Glob flags on file system
24pass pass pass pass pass pass set -o noglob
25N-I pass N-I N-I pass pass shopt -s nullglob
detailsdetailsdetails
26N-I pass N-I N-I FAIL FAIL shopt -s failglob
detailsdetailsdetailsdetailsdetails
27N-I pass N-I N-I FAIL FAIL Don't glob flags on file system with GLOBIGNORE
detailsdetailsdetailsdetailsdetails
28BUG pass pass pass pass pass Splitting/Globbing doesn't happen on local assignment
details

153 passed, 0 ok, 13 known unimplemented, 4 known bugs, 2 failed, 0 skipped

Details on runs that didn't PASS

dash13 store literal globs in array then expand

stdout:
stderr: 
/bin/dash: 2: Syntax error: "(" unexpected
ash13 store literal globs in array then expand

stdout:
stderr: 
_tmp/shells/ash: syntax error: unexpected "("
dash14 glob inside array

stdout:
stderr: 
/bin/dash: 2: Syntax error: "(" unexpected
ash14 glob inside array

stdout:
stderr: 
_tmp/shells/ash: syntax error: unexpected "("
mksh16 glob with char class expression

stdout:
_tmp/*.[[:punct:]E]
stderr:
mksh19 : escaped

stdout:
_tmp/*.[[:punct:]] _tmp/*.[[:punct:]]
stderr:
bash20 Redirect to glob, not evaluated

stdout:
stderr: 
cat: '_tmp/*.F': No such file or directory
dash25 shopt -s nullglob

stdout:
['_tmp/spec-tmp/*.nonexistent']
['_tmp/spec-tmp/*.nonexistent']
stderr:
/bin/dash: 2: shopt: not found
mksh25 shopt -s nullglob

stdout:
['_tmp/spec-tmp/*.nonexistent']
['_tmp/spec-tmp/*.nonexistent']
stderr:
/bin/mksh: <stdin>[2]: shopt: not found
ash25 shopt -s nullglob

stdout:
['_tmp/spec-tmp/*.nonexistent']
['_tmp/spec-tmp/*.nonexistent']
stderr:
_tmp/shells/ash: shopt: not found
dash26 shopt -s failglob

stdout:
['*.ZZ']
['*.ZZ']
status=0
stderr:
/bin/dash: 2: shopt: not found
mksh26 shopt -s failglob

stdout:
['*.ZZ']
['*.ZZ']
status=0
stderr:
/bin/mksh: <stdin>[2]: shopt: not found
ash26 shopt -s failglob

stdout:
['*.ZZ']
['*.ZZ']
status=0
stderr:
_tmp/shells/ash: shopt: not found
osh26 shopt -s failglob

[osh stdout] Expected u"['*.ZZ']\nstatus=1\n", got "['*.ZZ']\n"
[osh status] Expected 0, got 1

stdout:
['*.ZZ']
stderr:
Traceback (most recent call last):
  File "bin/osh", line 647, in <module>
    main(sys.argv)
  File "bin/osh", line 630, in main
    sys.exit(AppBundleMain(argv))
  File "bin/osh", line 606, in AppBundleMain
    status = OshMain(argv0, main_argv, login_shell)
  File "bin/osh", line 416, in OshMain
    status = ex.ExecuteAndRunExitTrap(node)
  File "/home/andy/git/oilshell/oil/bin/../core/cmd_exec.py", line 1210, in ExecuteAndRunExitTrap
    status = self.Execute(node)
  File "/home/andy/git/oilshell/oil/bin/../core/cmd_exec.py", line 1192, in Execute
    status = self._Execute(node, fork_external=fork_external)
  File "/home/andy/git/oilshell/oil/bin/../core/cmd_exec.py", line 1145, in _Execute
    status, check_errexit = self._Dispatch(node, fork_external)
  File "/home/andy/git/oilshell/oil/bin/../core/cmd_exec.py", line 882, in _Dispatch
    status = self._ExecuteList(node.children)
  File "/home/andy/git/oilshell/oil/bin/../core/cmd_exec.py", line 1166, in _ExecuteList
    status = self._Execute(child)  # last status wins
  File "/home/andy/git/oilshell/oil/bin/../core/cmd_exec.py", line 1145, in _Execute
    status, check_errexit = self._Dispatch(node, fork_external)
  File "/home/andy/git/oilshell/oil/bin/../core/cmd_exec.py", line 668, in _Dispatch
    argv = self.word_ev.EvalWordSequence(words)
  File "/home/andy/git/oilshell/oil/bin/../core/word_eval.py", line 905, in EvalWordSequence
    return self._EvalWordSequence(words)
  File "/home/andy/git/oilshell/oil/bin/../core/word_eval.py", line 895, in _EvalWordSequence
    self._EvalWordFrame(frame, argv)
  File "/home/andy/git/oilshell/oil/bin/../core/word_eval.py", line 848, in _EvalWordFrame
    results = self.globber.Expand(a)
  File "/home/andy/git/oilshell/oil/bin/../core/glob_.py", line 209, in Expand
    raise NotImplementedError
NotImplementedError
osh_ALT26 shopt -s failglob

[osh_ALT stdout] Expected u"['*.ZZ']\nstatus=1\n", got "['*.ZZ']\n"
[osh_ALT status] Expected 0, got 1

stdout:
['*.ZZ']
stderr:
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/Python-2.7.13/Lib/runpy.py", line 174, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
  File "/home/andy/git/oilshell/oil/Python-2.7.13/Lib/runpy.py", line 72, in _run_code
    exec code in run_globals
  File "/home/andy/git/oilshell/oil/bin/oil.py", line 647, in <module>
    main(sys.argv)
  File "/home/andy/git/oilshell/oil/bin/oil.py", line 630, in main
    sys.exit(AppBundleMain(argv))
  File "/home/andy/git/oilshell/oil/bin/oil.py", line 606, in AppBundleMain
    status = OshMain(argv0, main_argv, login_shell)
  File "/home/andy/git/oilshell/oil/bin/oil.py", line 416, in OshMain
    status = ex.ExecuteAndRunExitTrap(node)
  File "/home/andy/git/oilshell/oil/core/cmd_exec.py", line 1210, in ExecuteAndRunExitTrap
    status = self.Execute(node)
  File "/home/andy/git/oilshell/oil/core/cmd_exec.py", line 1192, in Execute
    status = self._Execute(node, fork_external=fork_external)
  File "/home/andy/git/oilshell/oil/core/cmd_exec.py", line 1145, in _Execute
    status, check_errexit = self._Dispatch(node, fork_external)
  File "/home/andy/git/oilshell/oil/core/cmd_exec.py", line 882, in _Dispatch
    status = self._ExecuteList(node.children)
  File "/home/andy/git/oilshell/oil/core/cmd_exec.py", line 1166, in _ExecuteList
    status = self._Execute(child)  # last status wins
  File "/home/andy/git/oilshell/oil/core/cmd_exec.py", line 1145, in _Execute
    status, check_errexit = self._Dispatch(node, fork_external)
  File "/home/andy/git/oilshell/oil/core/cmd_exec.py", line 668, in _Dispatch
    argv = self.word_ev.EvalWordSequence(words)
  File "/home/andy/git/oilshell/oil/core/word_eval.py", line 905, in EvalWordSequence
    return self._EvalWordSequence(words)
  File "/home/andy/git/oilshell/oil/core/word_eval.py", line 895, in _EvalWordSequence
    self._EvalWordFrame(frame, argv)
  File "/home/andy/git/oilshell/oil/core/word_eval.py", line 848, in _EvalWordFrame
    results = self.globber.Expand(a)
  File "/home/andy/git/oilshell/oil/bin/../core/glob_.py", line 209, in Expand
    raise NotImplementedError
NotImplementedError
FATAL: couldn't import from app bundle '_tmp/oil-tar-test/oil-0.5.alpha1/_bin/osh' (1)
Stripping the oil.ovm binary may cause this error.
See https://github.com/oilshell/oil/issues/47
dash27 Don't glob flags on file system with GLOBIGNORE

stdout:
hello zzzzz
stderr:
mksh27 Don't glob flags on file system with GLOBIGNORE

stdout:
hello zzzzz
stderr:
ash27 Don't glob flags on file system with GLOBIGNORE

stdout:
hello zzzzz
stderr:
osh27 Don't glob flags on file system with GLOBIGNORE

[osh stdout] Expected u'-* hello zzzz?\n', got ''
[osh status] Expected 0, got 99

stdout:
stderr: 
osh_ALT27 Don't glob flags on file system with GLOBIGNORE

[osh_ALT stdout] Expected u'-* hello zzzz?\n', got ''
[osh_ALT status] Expected 0, got 99

stdout:
stderr: 
dash28 Splitting/Globbing doesn't happen on local assignment

stdout:
stderr: 
/bin/dash: 2: local: 1.txt: bad variable name