From 058491e35baa8bc73e14b48ceb765a3fe3c07e1f Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Tue, 6 Oct 2020 17:06:30 +0200 Subject: Added variable terminal size --- src/suites/flow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/suites/flow.py') diff --git a/src/suites/flow.py b/src/suites/flow.py index babfd65..4f61283 100644 --- a/src/suites/flow.py +++ b/src/suites/flow.py @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:52 by charles #+# #+# # -# Updated: 2020/09/17 11:03:23 by charles ### ########.fr # +# Updated: 2020/10/06 16:16:12 by cacharle ### ########.fr # # # # ############################################################################ # @@ -80,7 +80,7 @@ def suite_pipe(test): test("echo bonjour | | cat -e", hook=hooks.error_line0) test("echo bonjour | asdf") test("asdf | echo bonjour") - test("echo a ||| echo b") + test("echo a ||| echo b", hook=hooks.error_line0) test("ls " + 40 * " | ls", setup="touch a b c") test("ls " + 80 * " | ls", setup="touch a b c") test("echo bonjour " + 40 * " | cat -e") -- cgit