Results for alias.test.sh

statusoshosh_.pyosh_.cc
pass 412019
ok 555
FAIL 02122
total464646
caseoshosh_.pyosh_.ccdescription
0pass FAIL FAIL Usage of builtins
detailsdetails
1pass FAIL FAIL Basic alias
detailsdetails
2pass FAIL FAIL define and use alias on a single line
detailsdetails
3pass pass FAIL alias can override builtin
details
4pass FAIL FAIL defining multiple aliases, then unalias
detailsdetails
5pass pass pass alias not defined
6pass pass pass unalias not defined
7pass pass pass listing given aliases
8pass FAIL FAIL alias without args lists all aliases
detailsdetails
9pass pass pass unalias without args is a usage error
10pass pass pass alias with trailing space causes alias expansion on second word
11pass pass pass Recursive alias expansion of first word
12pass pass pass Recursive alias expansion of SECOND word
13pass pass pass Expansion of alias with variable
14pass FAIL FAIL Alias must be an unquoted word, no expansions allowed
detailsdetails
15pass pass pass first and second word are the same alias, but no trailing space
16pass pass pass first and second word are the same alias, with trailing space
17pass FAIL FAIL Invalid syntax of alias
detailsdetails
18pass pass pass Dynamic alias definition
19pass pass pass Alias name with punctuation
20pass pass pass Syntax error after expansion
21pass pass pass Loop split across alias and arg works
22ok ok ok Loop split across alias in another way
detailsdetailsdetails
23ok ok ok Loop split across both iterative and recursive aliases
detailsdetailsdetails
24pass pass pass Alias with a quote in the middle is a syntax error
25pass pass pass Alias with internal newlines
26pass pass pass Alias trailing newline
27pass FAIL FAIL Two aliases in pipeline
detailsdetails
28pass FAIL FAIL Alias not respected inside $()
detailsdetails
29pass FAIL FAIL Alias can be defined and used on a single line
detailsdetails
30pass pass pass Alias is respected inside eval
31pass FAIL FAIL alias with redirects works
detailsdetails
32pass FAIL FAIL alias with environment bindings works
detailsdetails
33pass pass pass alias with line continuation in the middle
34ok ok ok alias for left brace
detailsdetailsdetails
35ok ok ok alias for left paren
detailsdetailsdetails
36pass FAIL FAIL alias used in subshell and command sub
detailsdetails
37pass FAIL FAIL alias used in here doc
detailsdetails
38pass FAIL FAIL here doc inside alias
detailsdetails
39pass FAIL FAIL Corner case: alias inside LHS array arithmetic expression
detailsdetails
40pass FAIL FAIL Alias that is pipeline
detailsdetails
41pass FAIL FAIL Alias that is && || ;
detailsdetails
42pass FAIL FAIL Alias and command sub (bug regression)
detailsdetails
43pass FAIL FAIL Alias and arithmetic
detailsdetails
44pass FAIL FAIL Alias and PS4
detailsdetails
45ok ok ok alias with keywords
detailsdetailsdetails
80 passed, 15 OK, 0 not implemented, 0 BUG, 43 failed, 0 timeouts, 0 cases skipped

Details on runs that didn't PASS

osh_.py0 Usage of builtins

[osh_.py stdout] Expected 'status=0\nx\n', got 'status=0\nx\n(cmd_value.Argv argv:[foo x] arg_spids:[37 39])\n'
[osh_.py status] Expected 127, got 0

stdout:
status=0
x
(cmd_value.Argv argv:[foo x] arg_spids:[37 39])
stderr:
Unhandled SimpleCommand
osh_.cc0 Usage of builtins

[osh_.cc stdout] Expected 'status=0\nx\n', got 'status=0\nx\n(cmd_value.Argv argv:[foo x] arg_spids:[37 39])\n'
[osh_.cc status] Expected 127, got 0

stdout:
status=0
x
(cmd_value.Argv argv:[foo x] arg_spids:[37 39])
stderr:
Unhandled SimpleCommand
osh_.py1 Basic alias

[osh_.py stdout] Expected 'hello world\nhi\nexpected failure\n', got 'hello world\nhi\n(cmd_value.Argv argv:[hi] arg_spids:[40])\n'

stdout:
hello world
hi
(cmd_value.Argv argv:[hi] arg_spids:[40])
stderr:
Unhandled SimpleCommand
osh_.cc1 Basic alias

[osh_.cc stdout] Expected 'hello world\nhi\nexpected failure\n', got 'hello world\nhi\n(cmd_value.Argv argv:[hi] arg_spids:[40])\n'

stdout:
hello world
hi
(cmd_value.Argv argv:[hi] arg_spids:[40])
stderr:
Unhandled SimpleCommand
osh_.py2 define and use alias on a single line

[osh_.py stdout] Expected 'two\nthree\n', got '(cmd_value.Argv argv:[e one] arg_spids:[12 14])\ntwo\nthree\n'

stdout:
(cmd_value.Argv argv:[e one] arg_spids:[12 14])
two
three
stderr:
Unhandled SimpleCommand
osh_.cc2 define and use alias on a single line

[osh_.cc stdout] Expected 'two\nthree\n', got '(cmd_value.Argv argv:[e one] arg_spids:[12 14])\ntwo\nthree\n'

stdout:
(cmd_value.Argv argv:[e one] arg_spids:[12 14])
two
three
stderr:
Unhandled SimpleCommand
osh_.cc3 alias can override builtin

[osh_.cc stdout] Expected 'foo bar\n', got ''
[osh_.cc status] Expected 0, got -11

stdout:
stderr: 
osh_.py4 defining multiple aliases, then unalias

[osh_.py stdout] Expected 'status=0\nx X\ny Y\nstatus=0\nundefined\nundefined\n', got 'status=0\nx X\ny Y\nstatus=0\n(cmd_value.Argv argv:[echo-x X] arg_spids:[67 69])\n(cmd_value.Argv argv:[echo-y Y] arg_spids:[77 79])\n'

stdout:
status=0
x X
y Y
status=0
(cmd_value.Argv argv:[echo-x X] arg_spids:[67 69])
(cmd_value.Argv argv:[echo-y Y] arg_spids:[77 79])
stderr:
Unhandled SimpleCommand
Unhandled SimpleCommand
osh_.cc4 defining multiple aliases, then unalias

[osh_.cc stdout] Expected 'status=0\nx X\ny Y\nstatus=0\nundefined\nundefined\n', got 'status=0\nx X\ny Y\nstatus=0\n(cmd_value.Argv argv:[echo-x X] arg_spids:[67 69])\n(cmd_value.Argv argv:[echo-y Y] arg_spids:[77 79])\n'

stdout:
status=0
x X
y Y
status=0
(cmd_value.Argv argv:[echo-x X] arg_spids:[67 69])
(cmd_value.Argv argv:[echo-y Y] arg_spids:[77 79])
stderr:
Unhandled SimpleCommand
Unhandled SimpleCommand
osh_.py8 alias without args lists all aliases

[osh_.py stdout] Expected "alias ex='exit'\nalias ll='ls -l'\nstatus=0\n", got 'status=0\n'

stdout:
status=0
stderr:
osh_.cc8 alias without args lists all aliases

[osh_.cc stdout] Expected "alias ex='exit'\nalias ll='ls -l'\nstatus=0\n", got 'status=0\n'

stdout:
status=0
stderr:
osh_.py14 Alias must be an unquoted word, no expansions allowed

[osh_.py stdout] Expected 'X\nstatus=127\n', got 'X\n(cmd_value.Argv argv:[echo_alias_ X] arg_spids:[31 33])\nstatus=0\n'

stdout:
X
(cmd_value.Argv argv:[echo_alias_ X] arg_spids:[31 33])
status=0
stderr:
Unhandled SimpleCommand
osh_.cc14 Alias must be an unquoted word, no expansions allowed

[osh_.cc stdout] Expected 'X\nstatus=127\n', got 'X\n(cmd_value.Argv argv:[echo_alias_ X] arg_spids:[31 33])\nstatus=0\n'

stdout:
X
(cmd_value.Argv argv:[echo_alias_ X] arg_spids:[31 33])
status=0
stderr:
Unhandled SimpleCommand
osh_.py17 Invalid syntax of alias

[osh_.py status] Expected 127, got 0

stdout:
(cmd_value.Argv argv:[x] arg_spids:[25])
stderr:
  alias echo_alias_= 'echo --; echo'  # bad space here
        ^~~~~~~~~~~~
[ stdin ]:2: No alias named 'echo --; echo'
Unhandled SimpleCommand
osh_.cc17 Invalid syntax of alias

[osh_.cc status] Expected 127, got 0

stdout:
(cmd_value.Argv argv:[x] arg_spids:[25])
stderr:
  alias echo_alias_= 'echo --; echo'  # bad space here
        ^~~~~~~~~~~~
[ stdin ]:2: No alias named 'echo --; echo'
Unhandled SimpleCommand
osh22 Loop split across alias in another way

stdout:
stderr: 
  for i in 1 2 3; do echo $i
                             ^
[ expansion of alias 'e_' ]:1: Expected word type Id.KW_Done, got Id.Eof_Real
osh_.py22 Loop split across alias in another way

stdout:
stderr: 
  for i in 1 2 3; do echo $i
                             ^
[ expansion of alias 'e_' ]:1: Expected word type Id.KW_Done, got Id.Eof_Real
osh_.cc22 Loop split across alias in another way

stdout:
stderr: 
  for i in 1 2 3; do echo $i
                             ^
[ expansion of alias 'e_' ]:1: dynamic_fmt_dummy
osh23 Loop split across both iterative and recursive aliases

stdout:
stderr: 
  for i in $one "2" 3
                      ^
[ expansion of alias 'FOR1' ]:1: Invalid word in for loop
osh_.py23 Loop split across both iterative and recursive aliases

stdout:
stderr: 
  for i in $one "2" 3
                      ^
[ expansion of alias 'FOR1' ]:1: Invalid word in for loop
osh_.cc23 Loop split across both iterative and recursive aliases

stdout:
stderr: 
  for i in $one "2" 3
                      ^
[ expansion of alias 'FOR1' ]:1: Invalid word in for loop
osh_.py27 Two aliases in pipeline

[osh_.py stdout] Expected '3\n', got ''

stdout:
stderr: 
osh_.cc27 Two aliases in pipeline

[osh_.cc stdout] Expected '3\n', got ''

stdout:
stderr: 
osh_.py28 Alias not respected inside $()

[osh_.py status] Expected 127, got 0

stdout:
(cmd_value.Argv argv:[sayhi] arg_spids:[17])
stderr:
Unhandled SimpleCommand
osh_.cc28 Alias not respected inside $()

[osh_.cc status] Expected 127, got 0

stdout:
(cmd_value.Argv argv:[sayhi] arg_spids:[17])
stderr:
Unhandled SimpleCommand
osh_.py29 Alias can be defined and used on a single line

[osh_.py stdout] Expected 'hello other line\n', got '(cmd_value.Argv argv:[sayhi same line] arg_spids:[14 16 18])\nhello other line\n'

stdout:
(cmd_value.Argv argv:[sayhi same line] arg_spids:[14 16 18])
hello other line
stderr:
Unhandled SimpleCommand
osh_.cc29 Alias can be defined and used on a single line

[osh_.cc stdout] Expected 'hello other line\n', got '(cmd_value.Argv argv:[sayhi same line] arg_spids:[14 16 18])\nhello other line\n'

stdout:
(cmd_value.Argv argv:[sayhi same line] arg_spids:[14 16 18])
hello other line
stderr:
Unhandled SimpleCommand
osh_.py31 alias with redirects works

[osh_.py stdout] Expected '1\n2\n3\n', got "1\n2\n3\n(cmd_value.Argv argv:[cat '/alias1.txt' '/alias2.txt' '/alias3.txt'] arg_spids:[50 52 55 58])\n"

stdout:
1
2
3
(cmd_value.Argv argv:[cat '/alias1.txt' '/alias2.txt' '/alias3.txt'] arg_spids:[50 52 55 58])
stderr:
Unhandled SimpleCommand
osh_.cc31 alias with redirects works

[osh_.cc stdout] Expected '1\n2\n3\n', got "1\n2\n3\n(cmd_value.Argv argv:[cat '/alias1.txt' '/alias2.txt' '/alias3.txt'] arg_spids:[50 52 55 58])\n"

stdout:
1
2
3
(cmd_value.Argv argv:[cat '/alias1.txt' '/alias2.txt' '/alias3.txt'] arg_spids:[50 52 55 58])
stderr:
Unhandled SimpleCommand
osh_.py32 alias with environment bindings works

[osh_.py stdout] Expected '1\n2\n', got '(cmd_value.Argv argv:[printenv.py FOO] arg_spids:[14 16])\n(cmd_value.Argv argv:[printenv.py FOO] arg_spids:[25 27])\n'

stdout:
(cmd_value.Argv argv:[printenv.py FOO] arg_spids:[14 16])
(cmd_value.Argv argv:[printenv.py FOO] arg_spids:[25 27])
stderr:
Unhandled SimpleCommand
Unhandled SimpleCommand
osh_.cc32 alias with environment bindings works

[osh_.cc stdout] Expected '1\n2\n', got '(cmd_value.Argv argv:[printenv.py FOO] arg_spids:[14 16])\n(cmd_value.Argv argv:[printenv.py FOO] arg_spids:[25 27])\n'

stdout:
(cmd_value.Argv argv:[printenv.py FOO] arg_spids:[14 16])
(cmd_value.Argv argv:[printenv.py FOO] arg_spids:[25 27])
stderr:
Unhandled SimpleCommand
Unhandled SimpleCommand
osh34 alias for left brace

stdout:
stderr: 
  { echo one
             ^
[ expansion of alias 'LEFT' ]:1: Expected word type Id.Lit_RBrace, got Id.Eof_Real
osh_.py34 alias for left brace

stdout:
stderr: 
  { echo one
             ^
[ expansion of alias 'LEFT' ]:1: Expected word type Id.Lit_RBrace, got Id.Eof_Real
osh_.cc34 alias for left brace

stdout:
stderr: 
  { echo one
             ^
[ expansion of alias 'LEFT' ]:1: dynamic_fmt_dummy
osh35 alias for left paren

stdout:
stderr: 
  ( echo one
             ^
[ expansion of alias 'LEFT' ]:1: Expected word type Id.Right_Subshell, got Id.Eof_Real
osh_.py35 alias for left paren

stdout:
stderr: 
  ( echo one
             ^
[ expansion of alias 'LEFT' ]:1: Expected word type Id.Right_Subshell, got Id.Eof_Real
osh_.cc35 alias for left paren

stdout:
stderr: 
  ( echo one
             ^
[ expansion of alias 'LEFT' ]:1: dynamic_fmt_dummy
osh_.py36 alias used in subshell and command sub

[osh_.py stdout] Expected '[ subshell\n[ commandsub\n', got '\n'

stdout:
stderr: 
osh_.cc36 alias used in subshell and command sub

[osh_.cc stdout] Expected '[ subshell\n[ commandsub\n', got '\n'

stdout:
stderr: 
osh_.py37 alias used in here doc

[osh_.py stdout] Expected '[ ]\n', got '(cmd_value.Argv argv:[cat] arg_spids:[13])\n'

stdout:
(cmd_value.Argv argv:[cat] arg_spids:[13])
stderr:
Unhandled SimpleCommand
osh_.cc37 alias used in here doc

[osh_.cc stdout] Expected '[ ]\n', got '(cmd_value.Argv argv:[cat] arg_spids:[13])\n'

stdout:
(cmd_value.Argv argv:[cat] arg_spids:[13])
stderr:
Unhandled SimpleCommand
osh_.py38 here doc inside alias

[osh_.py stdout] Expected 'hi\n', got '(cmd_value.Argv argv:[cat] arg_spids:[17])\n'

stdout:
(cmd_value.Argv argv:[cat] arg_spids:[17])
stderr:
Unhandled SimpleCommand
osh_.cc38 here doc inside alias

[osh_.cc stdout] Expected 'hi\n', got '(cmd_value.Argv argv:[cat] arg_spids:[17])\n'

stdout:
(cmd_value.Argv argv:[cat] arg_spids:[17])
stderr:
Unhandled SimpleCommand
osh_.py39 Corner case: alias inside LHS array arithmetic expression

[osh_.py stdout] Expected "['ZERO', 'ONE']\n", got '(cmd_value.Argv argv:[argv.py ZERO ONE] arg_spids:[41 43 43])\n'

stdout:
(cmd_value.Argv argv:[argv.py ZERO ONE] arg_spids:[41 43 43])
stderr:
Unhandled SimpleCommand
osh_.cc39 Corner case: alias inside LHS array arithmetic expression

[osh_.cc stdout] Expected "['ZERO', 'ONE']\n", got '(cmd_value.Argv argv:[argv.py ZERO ONE] arg_spids:[41 43 43])\n'

stdout:
(cmd_value.Argv argv:[argv.py ZERO ONE] arg_spids:[41 43 43])
stderr:
Unhandled SimpleCommand
osh_.py40 Alias that is pipeline

[osh_.py stdout] Expected '3\n', got ''

stdout:
stderr: 
osh_.cc40 Alias that is pipeline

[osh_.cc stdout] Expected '3\n', got ''

stdout:
stderr: 
osh_.py41 Alias that is && || ;

[osh_.py stdout] Expected 'one\ntwo\n1\nfour\n', got 'one\ntwo\nfour\n'

stdout:
one
two
four
stderr:
osh_.cc41 Alias that is && || ;

[osh_.cc stdout] Expected 'one\ntwo\n1\nfour\n', got 'one\ntwo\nfour\n'

stdout:
one
two
four
stderr:
osh_.py42 Alias and command sub (bug regression)

[osh_.py stdout] Expected "['foo', 'bar']\n", got 'foo bar\n(cmd_value.Argv argv:[argv.py] arg_spids:[35])\n'

stdout:
foo bar
(cmd_value.Argv argv:[argv.py] arg_spids:[35])
stderr:
[??? no location ???] $HOME isn't defined
Unhandled SimpleCommand
osh_.cc42 Alias and command sub (bug regression)

[osh_.cc stdout] Expected "['foo', 'bar']\n", got 'foo bar\n(cmd_value.Argv argv:[argv.py] arg_spids:[35])\n'

stdout:
foo bar
(cmd_value.Argv argv:[argv.py] arg_spids:[35])
stderr:
[??? no location ???] $HOME isn't defined
Unhandled SimpleCommand
osh_.py43 Alias and arithmetic

[osh_.py stdout] Expected "['3']\n", got '(cmd_value.Argv argv:[argv.py 3] arg_spids:[22 24])\n'

stdout:
(cmd_value.Argv argv:[argv.py 3] arg_spids:[22 24])
stderr:
Unhandled SimpleCommand
osh_.cc43 Alias and arithmetic

[osh_.cc stdout] Expected "['3']\n", got '(cmd_value.Argv argv:[argv.py 3] arg_spids:[22 24])\n'

stdout:
(cmd_value.Argv argv:[argv.py 3] arg_spids:[22 24])
stderr:
Unhandled SimpleCommand
osh_.py44 Alias and PS4

[osh_.py stdout] Expected "['foo', 'bar']\n", got '(cmd_value.Argv argv:[argv.py foo bar] arg_spids:[53 55 57])\n'

stdout:
(cmd_value.Argv argv:[argv.py foo bar] arg_spids:[53 55 57])
stderr:
+ (lvalue.Named name:PS4 spids:[24]) = (value.Str s:'+$(echo trace) ')
+ shopt -s expand_aliases
+ alias 'a=argv.py'
+ argv.py foo bar
Unhandled SimpleCommand
osh_.cc44 Alias and PS4

[osh_.cc stdout] Expected "['foo', 'bar']\n", got '(cmd_value.Argv argv:[argv.py foo bar] arg_spids:[53 55 57])\n'

stdout:
(cmd_value.Argv argv:[argv.py foo bar] arg_spids:[53 55 57])
stderr:
Unhandled SimpleCommand
osh45 alias with keywords

stdout:
stderr: 
  
   ^
[ expansion of alias 'a' ]:1: Unexpected EOF while parsing command
osh_.py45 alias with keywords

stdout:
stderr: 
  
   ^
[ expansion of alias 'a' ]:1: Unexpected EOF while parsing command
osh_.cc45 alias with keywords

stdout:
stderr: 
   
   ^
[ expansion of alias 'a' ]:1: Unexpected EOF while parsing command