diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-06-16 19:35:49 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-06-16 19:35:49 +0200 |
| commit | 2ac2df38b1d812f5ef25a4d9a9f25143005b82b8 (patch) | |
| tree | 3e6b794b393a0a9a586e1b03799ac66999ec8c65 /main.py | |
| parent | f7571404f308d889dc0e7baf1edea3774b8e45f5 (diff) | |
| download | minishell_test-2ac2df38b1d812f5ef25a4d9a9f25143005b82b8.tar.gz minishell_test-2ac2df38b1d812f5ef25a4d9a9f25143005b82b8.tar.bz2 minishell_test-2ac2df38b1d812f5ef25a4d9a9f25143005b82b8.zip | |
Added test for interpolation, glob and escape
Diffstat (limited to 'main.py')
| -rwxr-xr-x | main.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -22,6 +22,11 @@ def main(): suites.suite_redirection() suites.suite_edgecases() suites.suite_cmd_error() + suites.suite_interpolation() + suites.suite_glob() + suites.suite_escape() + suites.suite_preprocess() + suites.suite_encoding() except KeyboardInterrupt: shutil.rmtree(config.SANDBOX_PATH) @@ -64,4 +69,5 @@ if __name__ == "__main__": log_file.write("=" * 80 + "\n\n") print(utils.green("{:2} [PASS]".format(pass_total)), end=" ") print(utils.red("{:2} [FAIL]".format(len(results) - pass_total))) + print("See", config.LOG_PATH, "for more information") sys.exit(utils.status) |
