aboutsummaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-06-17 08:53:47 +0200
committerCharles <sircharlesaze@gmail.com>2020-06-17 08:53:47 +0200
commit24fc395a7853f03def1350f7ff35a7f819473b79 (patch)
treee776137c0840870a579b917aab00791b3e065fe6 /config.py
parent2ac2df38b1d812f5ef25a4d9a9f25143005b82b8 (diff)
downloadminishell_test-24fc395a7853f03def1350f7ff35a7f819473b79.tar.gz
minishell_test-24fc395a7853f03def1350f7ff35a7f819473b79.tar.bz2
minishell_test-24fc395a7853f03def1350f7ff35a7f819473b79.zip
Added Test and Suite class
Diffstat (limited to 'config.py')
-rw-r--r--config.py6
1 files changed, 4 insertions, 2 deletions
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