aboutsummaryrefslogtreecommitdiff
path: root/suites/suites.py
diff options
context:
space:
mode:
Diffstat (limited to 'suites/suites.py')
-rw-r--r--suites/suites.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/suites/suites.py b/suites/suites.py
index f56875e..9f6ce86 100644
--- a/suites/suites.py
+++ b/suites/suites.py
@@ -76,6 +76,10 @@ def suite_redirection(test):
def suite_edgecases(test):
test('echo "\\"" >>a"b""c" ', files=["abc"])
test("echo " + ''.join([chr(i) for i in range(1, 127) if chr(i) not in '\n`"\'()|&><']))
+ test("echo foo>bar", files=["bar"])
+ test("echo foo >bar", files=["bar"])
+ test("echo foo> bar", files=["bar"])
+ test("echo foo > bar", files=["bar"])
@suite
def suite_cmd_error(test):