[git commit master 1/1] hush: document a bug about aborting on sourced file error when non-interactive

Denys Vlasenko vda.linux at googlemail.com
Thu Mar 24 04:38:51 UTC 2011


commit: http://git.busybox.net/busybox/commit/?id=c162bcdcd1c5cb000a8ceaf4413d4abdfa6e3dfc
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 shell/hush_test/hush-misc/source1.right |    5 +++++
 shell/hush_test/hush-misc/source1.tests |   10 ++++++++++
 2 files changed, 15 insertions(+), 0 deletions(-)
 create mode 100644 shell/hush_test/hush-misc/source1.right
 create mode 100755 shell/hush_test/hush-misc/source1.tests

diff --git a/shell/hush_test/hush-misc/source1.right b/shell/hush_test/hush-misc/source1.right
new file mode 100644
index 0000000..d425603
--- /dev/null
+++ b/shell/hush_test/hush-misc/source1.right
@@ -0,0 +1,5 @@
+hush: syntax error: unterminated ${name}
+line2
+Ok1:0
+hush: syntax error: unterminated '
+Ok2:1
diff --git a/shell/hush_test/hush-misc/source1.tests b/shell/hush_test/hush-misc/source1.tests
new file mode 100755
index 0000000..c138883
--- /dev/null
+++ b/shell/hush_test/hush-misc/source1.tests
@@ -0,0 +1,10 @@
+echo 'echo ${^}
+echo line2' >sourced1
+. ./sourced1
+echo Ok1:$?
+
+echo "echo '" >sourced1
+. ./sourced1
+echo Ok2:$?
+
+rm sourced1
-- 
1.7.3.4



More information about the busybox-cvs mailing list