diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-03-24 05:38:51 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-03-24 05:38:51 +0100 |
commit | c162bcdcd1c5cb000a8ceaf4413d4abdfa6e3dfc (patch) | |
tree | 32c30a25af4c5ee92629dd370cc41b9457e50830 /shell | |
parent | 3eab24e64a65746ed9fcc5bed3e9a19a489b0573 (diff) |
hush: document a bug about aborting on sourced file error when non-interactive
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/hush_test/hush-misc/source1.right | 5 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/source1.tests | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/source1.right b/shell/hush_test/hush-misc/source1.right new file mode 100644 index 000000000..d4256034b --- /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 000000000..c13888359 --- /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 |