From dcb4a6453ca1ca6789c3121a739f373abeaba14c Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 11 Sep 2020 15:52:01 +0200 Subject: Added output hook and sort_lines hook --- src/suites/parenthesis.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/suites/parenthesis.py') diff --git a/src/suites/parenthesis.py b/src/suites/parenthesis.py index 98320e8..d3ec5bf 100644 --- a/src/suites/parenthesis.py +++ b/src/suites/parenthesis.py @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:57 by charles #+# #+# # -# Updated: 2020/09/11 14:23:35 by charles ### ########.fr # +# Updated: 2020/09/11 16:13:54 by charles ### ########.fr # # # # ############################################################################ # @@ -55,3 +55,8 @@ def suite_parenthesis(test): test("(exit); echo bonjour") test("(echo bonjour; exit; echo aurevoir)") + + test("(ls && ls)") + test("(ls doesntexist || ls)") + test("(ls doesntexist && ls)") + test("(ls && ls) && echo $?") -- cgit