From 24fc395a7853f03def1350f7ff35a7f819473b79 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 17 Jun 2020 08:53:47 +0200 Subject: Added Test and Suite class --- config.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'config.py') diff --git a/config.py b/config.py index 64c4706..0e0d858 100644 --- a/config.py +++ b/config.py @@ -9,7 +9,7 @@ MINISHELL_EXEC = "minishell" # path to reference shell (shell which will be compared minishell) # has to support the -c option (sh, bash and zsh support it) -REFERENCE_SHELL_PATH = "/bin/bash" +REFERENCE_PATH = "/bin/bash" # log file path LOG_PATH = "result.log" @@ -43,9 +43,11 @@ Perspiciatis ut maxime et libero quo voluptas consequatur illum. Pariatur porro """ LOREM = ' '.join(LOREM.split('\n')) - # do not edit MINISHELL_PATH = os.path.abspath( os.path.join(MINISHELL_DIR, MINISHELL_EXEC) ) + +# 0, 1, 2 +VERBOSE_LEVEL = 0 -- cgit