From 2ac2df38b1d812f5ef25a4d9a9f25143005b82b8 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 16 Jun 2020 19:35:49 +0200 Subject: Added test for interpolation, glob and escape --- main.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'main.py') diff --git a/main.py b/main.py index 6043232..aab8473 100755 --- a/main.py +++ b/main.py @@ -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) -- cgit