aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/source2.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-misc/source2.tests')
-rwxr-xr-xshell/hush_test/hush-misc/source2.tests8
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/source2.tests b/shell/hush_test/hush-misc/source2.tests
new file mode 100755
index 000000000..40b6b83cd
--- /dev/null
+++ b/shell/hush_test/hush-misc/source2.tests
@@ -0,0 +1,8 @@
+echo 'echo "0:$0 1:$1 2:$2"' >sourced1
+set -- 1 2 3
+"$THIS_SH" -c '. ./sourced1' arg0 arg1 arg2
+echo Ok1:$?
+"$THIS_SH" -c '. ./sourced1 q w e' arg0 arg1 arg2
+echo Ok2:$?
+
+rm sourced1