From cc461736d6ca3c3b809390d8d7873a136e3b899a Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 10 Sep 2010 10:19:22 +0200 Subject: hush: fixes to testsuite Signed-off-by: Denys Vlasenko --- shell/hush_test/hush-bugs/export_exp.tests | 19 ------------------- .../hush_test/hush-bugs/export_exp.tests.disabled | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 19 deletions(-) delete mode 100755 shell/hush_test/hush-bugs/export_exp.tests create mode 100644 shell/hush_test/hush-bugs/export_exp.tests.disabled (limited to 'shell/hush_test/hush-bugs') diff --git a/shell/hush_test/hush-bugs/export_exp.tests b/shell/hush_test/hush-bugs/export_exp.tests deleted file mode 100755 index 91f57aa..0000000 --- a/shell/hush_test/hush-bugs/export_exp.tests +++ /dev/null @@ -1,19 +0,0 @@ -v="a=aa0 b=bb0" -# only 1st arg should be expanded in multiple words -export $v c=$v -echo $a $b -echo $c - -# only 1st arg should be expanded in multiple words -export `echo a=aa1 b=bb1` c=`echo a=aa1 b=bb1` -echo $a $b -echo $c - ->zz=zz ->zzz=zzz -# only 1st arg should be globbed -export zzz* zz=* -env | grep ^zz | sort -rm -rf zz=zz zzz=zzz - -echo Done diff --git a/shell/hush_test/hush-bugs/export_exp.tests.disabled b/shell/hush_test/hush-bugs/export_exp.tests.disabled new file mode 100644 index 0000000..0913fd3 --- /dev/null +++ b/shell/hush_test/hush-bugs/export_exp.tests.disabled @@ -0,0 +1,22 @@ +# This test shows a very special handling of export and local +# builtins by bash. + +v="a=aa0 b=bb0" +# only 1st arg should be expanded in multiple words +export $v c=$v +echo $a $b +echo $c + +# only 1st arg should be expanded in multiple words +export `echo a=aa1 b=bb1` c=`echo a=aa1 b=bb1` +echo $a $b +echo $c + +>zz=zz +>zzz=zzz +# only 1st arg should be globbed +export zzz* zz=* +env | grep ^zz | sort +rm -rf zz=zz zzz=zzz + +echo Done -- cgit v1.1