aboutsummaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-06-16 19:35:49 +0200
committerCharles <sircharlesaze@gmail.com>2020-06-16 19:35:49 +0200
commit2ac2df38b1d812f5ef25a4d9a9f25143005b82b8 (patch)
tree3e6b794b393a0a9a586e1b03799ac66999ec8c65 /main.py
parentf7571404f308d889dc0e7baf1edea3774b8e45f5 (diff)
downloadminishell_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-xmain.py6
1 files changed, 6 insertions, 0 deletions
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)