diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-06-17 08:53:47 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-06-17 08:53:47 +0200 |
| commit | 24fc395a7853f03def1350f7ff35a7f819473b79 (patch) | |
| tree | e776137c0840870a579b917aab00791b3e065fe6 /config.py | |
| parent | 2ac2df38b1d812f5ef25a4d9a9f25143005b82b8 (diff) | |
| download | minishell_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.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |
