aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/tests/expansion/export3.0
blob: a1a0e6658a08026addbbe3624c32375cdc2b9227 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# $FreeBSD$

w='@ @'
check() {
	[ "$v" = "$w" ] || echo "Expected $w got $v"
}

command export v=$w
check
command command export v=$w
check

HOME=/known/value
check() {
	[ "$v" = ~ ] || echo "Expected $HOME got $v"
}

command export v=~
check
command command export v=~
check

check() {
	[ "$v" = "x:$HOME" ] || echo "Expected x:$HOME got $v"
}

command export v=x:~
check
command command export v=x:~
check