OILS / spec / toysh-posix.test.sh View on Github | oils.pub

392 lines, 172 significant
1## oils_failures_allowed: 5
2## compare_shells: bash dash mksh zsh ash yash
3
4#### Fatal error
5# http://landley.net/notes.html#20-06-2020
6
7abc=${a?bc} echo hello; echo blah
8## status: 1
9## OK yash/dash/ash status: 2
10## stdout-json: ""
11
12#### setting readonly var (bash is only one where it's non-fatal)
13# http://landley.net/notes.html#20-06-2020
14
15readonly abc=123
16abc=def
17echo status=$?
18## status: 2
19## stdout-json: ""
20## OK osh/zsh status: 1
21## BUG bash status: 0
22## BUG bash STDOUT:
23status=1
24## END
25
26#### readonly with temp binding
27# http://landley.net/notes.html#20-06-2020
28
29# temp binding
30readonly abc=123
31abc=def echo one
32echo status=$?
33
34echo potato < /does/not/exist || echo hello
35
36## status: 2
37## stdout-json: ""
38## OK osh/bash status: 0
39## OK osh/bash STDOUT:
40one
41status=0
42hello
43## END
44## OK zsh status: 1
45
46#### Failed redirect in assignment, vs. export
47
48abc=def > /does/not/exist1
49echo abc=$abc
50
51export abc=def > /does/not/exist2
52echo abc=$abc
53
54## STDOUT:
55abc=
56abc=
57## END
58## BUG bash STDOUT:
59abc=def
60abc=def
61## END
62## OK dash/ash/mksh STDOUT:
63abc=
64## END
65## OK dash status: 2
66## OK mksh status: 1
67## OK ash status: 1
68
69#### Evaluation order of redirect and ${undef?error}
70# http://landley.net/notes.html#12-06-2020
71rm *
72
73rm -f walrus
74$SH -c 'X=${x?bc} > walrus'
75if test -f walrus; then echo 'exists1'; fi
76
77rm -f walrus
78$SH -c '>walrus echo ${a?bc}'
79test -f walrus
80if test -f walrus; then echo 'exists2'; fi
81## STDOUT:
82exists1
83## END
84## OK bash stdout-json: ""
85
86#### Function def in pipeline
87# http://landley.net/notes.html#26-05-2020
88
89echo hello | potato() { echo abc; } | echo ha
90
91## STDOUT:
92ha
93## END
94
95#### dynamic glob - http://landley.net/notes.html#08-05-2020
96rm * # setup
97X='*'; echo $X
98echo "*"*".?z"
99## STDOUT:
100_tmp
101**.?z
102## END
103## BUG zsh status: 1
104## BUG zsh STDOUT:
105*
106## END
107
108#### no shebang
109rm *
110
111cat > snork << 'EOF'
112echo hello $BLAH
113EOF
114
115chmod +x snork
116$SH -c 'BLAH=123; ./snork'
117$SH -c 'BLAH=123; exec ./snork'
118$SH -c 'BLAH=123 exec ./snork'
119## STDOUT:
120hello
121hello
122hello 123
123## END
124
125
126#### IFS
127
128IFS=x; X=abxcd; echo ${X/bxc/g}
129
130X=a=\"\$a\"; echo ${X//a/{x,y,z}}
131
132## STDOUT:
133agd
134{ ,y,z="${ ,y,z"}
135## END
136## BUG zsh STDOUT:
137agd
138{x,y,z}="${x,y,z}"
139## END
140## N-I dash status: 2
141## N-I dash stdout-json: ""
142
143#### shift is fatal at top level?
144# http://landley.net/notes.html#08-04-2020
145
146# This makes a difference for zsh, but not for bash?
147#set -o posix
148
149$SH -c 'shift; echo hello'
150## STDOUT:
151hello
152## END
153## OK dash status: 2
154## OK mksh status: 1
155## OK dash/mksh stdout-json: ""
156
157#### var and func - http://landley.net/notes.html#19-03-2020
158potato() { echo hello; }
159potato=42
160echo $potato
161
162potato
163
164## STDOUT:
16542
166hello
167## END
168
169
170#### IFS - http://landley.net/notes.html#05-03-2020
171case $SH in zsh) exit ;; esac
172
173IFS=x
174chicken() { for i in "$@"; do echo =$i=; done;}
175chicken one abc dxf ghi
176
177echo ---
178myfunc() { "$SH" -c 'IFS=x; for i in $@; do echo =$i=; done' blah "$@"; }
179myfunc one "" two
180
181## STDOUT:
182=one=
183=abc=
184=d f=
185=ghi=
186---
187=one=
188==
189=two=
190## END
191
192## BUG dash/ash STDOUT:
193=one=
194=abc=
195=d f=
196=ghi=
197---
198=one=
199=two=
200## END
201
202## N-I zsh STDOUT:
203## END
204
205#### IFS=x and '' and unquoted $@ - reduction of case above
206
207setopt SH_WORD_SPLIT
208#set -x
209
210set -- one "" two
211
212IFS=x
213
214argv.py $@
215
216for i in $@; do
217 echo -$i-
218done
219
220## STDOUT:
221['one', '', 'two']
222-one-
223--
224-two-
225## END
226
227## BUG dash/ash/zsh STDOUT:
228['one', 'two']
229-one-
230-two-
231## END
232
233
234#### for loop parsing - http://landley.net/notes.html#04-03-2020
235
236$SH -c '
237for i
238in one two three
239do echo $i;
240done
241'
242echo $?
243
244$SH -c 'for i; in one two three; do echo $i; done'
245test $? -ne 0 && echo cannot-parse
246
247## STDOUT:
248one
249two
250three
2510
252cannot-parse
253## END
254
255#### Parsing $(( ))
256# http://landley.net/notes.html#15-03-2020
257$SH -c 'echo $((echo hello))'
258if test $? -ne 0; then echo fail; fi
259## stdout: fail
260
261#### IFS - http://landley.net/notes.html#15-02-2020 (TODO: osh)
262
263IFS=x; A=xabcxx; for i in $A; do echo =$i=; done
264
265unset IFS; A=" abc def "; for i in ""$A""; do echo =$i=; done
266
267## STDOUT:
268==
269=abc=
270==
271==
272=abc=
273=def=
274==
275## END
276## BUG zsh status: 1
277## BUG zsh stdout-json: ""
278
279#### IFS 2 (TODO: osh)
280this one appears different between osh and bash
281A=" abc def "; for i in ""x""$A""; do echo =$i=; done
282
283## STDOUT:
284=x=
285=abc=
286=def=
287==
288## END
289## BUG zsh status: 1
290## BUG zsh stdout-json: ""
291
292#### IFS 3
293IFS=x; X="onextwoxxthree"; y=$X; echo $y
294## STDOUT:
295one two three
296## END
297## BUG zsh STDOUT:
298onextwoxxthree
299## END
300
301#### IFS 4
302
303setopt SH_WORD_SPLIT
304
305IFS=x
306
307func1() {
308 echo /$*/
309 for i in $*; do echo -$i-; done
310}
311func1 "" ""
312
313echo
314
315func2() {
316 echo /"$*"/
317 for i in =$*=; do echo -$i-; done
318}
319func2 "" ""
320
321## STDOUT:
322/ /
323
324/x/
325-=-
326-=-
327## END
328## BUG bash STDOUT:
329/ /
330--
331
332/x/
333-=-
334-=-
335## END
336## BUG yash/zsh STDOUT:
337/ /
338--
339--
340
341/x/
342-=-
343-=-
344## END
345
346#### IFS 5
347cc() { for i in $*; do echo -$i-; done;}; cc "" "" "" "" ""
348cc() { echo =$1$2=;}; cc "" ""
349## STDOUT:
350==
351## END
352## BUG yash STDOUT:
353--
354--
355--
356--
357--
358==
359## END
360## BUG zsh status: 1
361## BUG zsh stdout-json: ""
362
363#### Can't parse extra }
364
365$SH -c 'for i in a"$@"b;do echo =$i=;done;}' 123 456 789
366## status: 2
367## OK mksh/zsh status: 1
368## STDOUT:
369## END
370
371#### Command Sub Syntax Error
372# http://landley.net/notes.html#28-01-2020
373
374echo $(if true)
375echo $?
376echo $(false)
377echo $?
378
379## status: 2
380## stdout-json: ""
381
382## OK mksh/zsh status: 1
383
384
385#### Pipeline - http://landley.net/notes-2019.html#16-12-2019
386echo hello | { read i; echo $i;} | { read i; echo $i;} | cat
387echo hello | while read i; do echo -=$i=- | sed s/=/@/g ; done | cat
388## STDOUT:
389hello
390-@hello@-
391## END
392