]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - tools/regression/bin/sh/expansion/export3.0
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / tools / regression / bin / sh / 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