From 88b532d59af81f3b788864b2d6d42e1f86bc8de0 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 17 Mar 2013 14:11:04 +0100 Subject: hush: source builtin should override $N only if it has args function old new delta builtin_source 174 184 +10 Signed-off-by: Denys Vlasenko --- shell/hush_test/hush-misc/source2.tests | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 shell/hush_test/hush-misc/source2.tests (limited to 'shell/hush_test/hush-misc/source2.tests') 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 -- cgit v1.2.3