diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-12 13:45:45 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-12 13:45:45 +0100 |
commit | b70cef71ebf1e71d147e1dee57134b1ad1da6314 (patch) | |
tree | e05f08a7b4c7d4c07a9becc48fc2d881ff82bfd1 /shell/hush_test/hush-misc/nommu2.tests | |
parent | f2c8aa6676ebedc34b2cd5089ce6f13c16db1277 (diff) |
hush: two NOMMU fixes for bugs 877 and 883
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-misc/nommu2.tests')
-rwxr-xr-x | shell/hush_test/hush-misc/nommu2.tests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/nommu2.tests b/shell/hush_test/hush-misc/nommu2.tests new file mode 100755 index 000000000..61ed5ce5b --- /dev/null +++ b/shell/hush_test/hush-misc/nommu2.tests @@ -0,0 +1,5 @@ +echo Not shown | if true; then echo $(echo Ok); fi +echo Not shown | if true; then echo `echo Ok`; fi +echo Not shown | ( if true; then echo $(echo Ok); fi ) +echo Not shown | ( if true; then echo `echo Ok`; fi ) +echo Done |