aboutsummaryrefslogtreecommitdiffstats
path: root/tests/varenv1.sub
diff options
context:
space:
mode:
Diffstat (limited to 'tests/varenv1.sub')
-rw-r--r--tests/varenv1.sub28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/varenv1.sub b/tests/varenv1.sub
new file mode 100644
index 0000000..168f87b
--- /dev/null
+++ b/tests/varenv1.sub
@@ -0,0 +1,28 @@
+# test out the export behavior of variable assignments preceding `eval', `.'
+# and shell functions
+
+func()
+{
+ printenv var
+}
+
+export var=10
+echo expect 20
+var=20 eval printenv var
+
+: ${TMPDIR:=/tmp}
+TMPFILE=$TMPDIR/evalsub.$$
+
+rm -f $TMPFILE
+echo 'printenv var' > $TMPFILE
+
+echo expect 30
+var=30 . $TMPFILE
+
+rm -f $TMPFILE
+
+echo expect 40
+var=40 func
+
+echo expect 50
+var=50 command printenv var