]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - bin/sh/tests/expansion/export3.0
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / bin / sh / tests / expansion / export3.0
1 # $FreeBSD$
2
3 w='@ @'
4 check() {
5         [ "$v" = "$w" ] || echo "Expected $w got $v"
6 }
7
8 command export v=$w
9 check
10 command command export v=$w
11 check
12
13 HOME=/known/value
14 check() {
15         [ "$v" = ~ ] || echo "Expected $HOME got $v"
16 }
17
18 command export v=~
19 check
20 command command export v=~
21 check
22
23 check() {
24         [ "$v" = "x:$HOME" ] || echo "Expected x:$HOME got $v"
25 }
26
27 command export v=x:~
28 check
29 command command export v=x:~
30 check