summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/source2.tests (plain)
blob: 40b6b83cdb350d9893b829d5f6848ab0b3f26248
1echo 'echo "0:$0 1:$1 2:$2"' >sourced1
2set -- 1 2 3
3"$THIS_SH" -c '. ./sourced1' arg0 arg1 arg2
4echo Ok1:$?
5"$THIS_SH" -c '. ./sourced1 q w e' arg0 arg1 arg2
6echo Ok2:$?
7
8rm sourced1
9