From cc041d1901daa8be9197a59d963466fdc7e2b404 Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 13 Jul 2020 15:47:18 +0200 Subject: Added cmd variable tests and empty quote --- suites/preprocess.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'suites/preprocess.py') diff --git a/suites/preprocess.py b/suites/preprocess.py index 62588b7..34dac00 100644 --- a/suites/preprocess.py +++ b/suites/preprocess.py @@ -17,6 +17,12 @@ def suite_quote(test): test('echo "\\$"') test('echo "\\\\"') + test('ls ""') + test("ls ''") + + test('ls "" "" "" \'\' """"') + test("ls '' '' '''' ''") + @suite def suite_interpolation(test): test("echo $TEST", exports={"TEST": "bonjour"}) -- cgit