diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-09-14 21:35:25 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-09-14 21:35:25 +0200 |
| commit | fec33d1621e01e12a7dc64630477318213218ae7 (patch) | |
| tree | beaa18fda09bfc2c13aa1e3a4173370fc9bd15a1 /src/suites/preprocess.py | |
| parent | 55fab322485f67112c789a4a529765b5e6635238 (diff) | |
| download | minishell_test-fec33d1621e01e12a7dc64630477318213218ae7.tar.gz minishell_test-fec33d1621e01e12a7dc64630477318213218ae7.tar.bz2 minishell_test-fec33d1621e01e12a7dc64630477318213218ae7.zip | |
Added more flow and path tests
Diffstat (limited to 'src/suites/preprocess.py')
| -rw-r--r-- | src/suites/preprocess.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/suites/preprocess.py b/src/suites/preprocess.py index 8dac56b..27a27a4 100644 --- a/src/suites/preprocess.py +++ b/src/suites/preprocess.py @@ -6,7 +6,7 @@ # By: juligonz <juligonz@student.42.fr> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:25:00 by charles #+# #+# # -# Updated: 2020/09/13 12:20:37 by charles ### ########.fr # +# Updated: 2020/09/14 15:15:53 by charles ### ########.fr # # # # **************************************************************************** # @@ -63,6 +63,8 @@ def suite_quote(test): test('echo """""""""""""""""""""""""""""""""""""""""""', hook=hooks.error_line0) test("echo 'AH\\'") test('echo "AH\\"') + test("echo '\\''") + test('echo "\\""') @suite() |
