From 12f385695e13bbb0dd65062fa371bd914acd7862 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Tue, 15 Sep 2020 17:54:02 +0200 Subject: Added more parenthesis, pipe, quote tests --- src/suites/builtin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/suites/builtin.py') diff --git a/src/suites/builtin.py b/src/suites/builtin.py index fdc3a08..3aecfb9 100644 --- a/src/suites/builtin.py +++ b/src/suites/builtin.py @@ -6,7 +6,7 @@ # By: juligonz +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:43 by charles #+# #+# # -# Updated: 2020/09/15 11:44:48 by charles ### ########.fr # +# Updated: 2020/09/15 17:29:35 by charles ### ########.fr # # Updated: 2020/09/11 18:01:27 by juligonz ### ########.fr # # # # **************************************************************************** # @@ -91,6 +91,7 @@ def suite_export(test): test("export 'asdf ' B ' asdf asdf asd f' ' asdf ' '' 'asdf ' C; echo $A$B$C") test("export A 'asdf ' B ' asdf asdf asd f' ' asdf ' '' 'asdf '; echo $A$B$C") test("export A B C; echo $A$B$C") + test("export A B C; env", hook=hooks.sort_lines) test("export 'AH@'=nop") test("export \"AH'\"=nop") test("export 'AH\"'=nop") -- cgit