diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-05-01 11:44:15 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-05-01 11:44:15 +0200 |
| commit | 1cf685910f47be8f70fe3120a2aef4aa34d2e92a (patch) | |
| tree | 8bfaf70d52a212c0ada8d126721a249dcca15ed3 /minishell_test.config | |
| download | minishell_test-1cf685910f47be8f70fe3120a2aef4aa34d2e92a.tar.gz minishell_test-1cf685910f47be8f70fe3120a2aef4aa34d2e92a.tar.bz2 minishell_test-1cf685910f47be8f70fe3120a2aef4aa34d2e92a.zip | |
Initial commit
Diffstat (limited to 'minishell_test.config')
| -rw-r--r-- | minishell_test.config | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/minishell_test.config b/minishell_test.config new file mode 100644 index 0000000..3795ac7 --- /dev/null +++ b/minishell_test.config @@ -0,0 +1,21 @@ +# Minishell config file + +# minishell dir path +minishell_path=../minishell + +# minishell executable +minishell_exec=minishell + +# lorem (long text) path +lorem_path=lorem.txt + +# 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 + +# string marker which show the test result +pass_marker=. +fail_marker=! + +# log file path +log_file=result.log |
