1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#!/usr/bin/env python3
# ############################################################################ #
# #
# ::: :::::::: #
# main.py :+: :+: :+: #
# +:+ +:+ +:+ #
# By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/07/15 15:11:52 by charles #+# #+# #
# Updated: 2020/07/15 15:11:52 by charles ### ########.fr #
# #
# ############################################################################ #
import os
import sys
import shutil
import distutils.spawn
import subprocess
import config
import sandbox
from args import parse_args
from suite import Suite
from suites import * # noqa: F403,F401
def main():
args = parse_args()
if args.list:
Suite.list()
sys.exit(0)
if config.MINISHELL_MAKE or args.make:
try:
print("{:=^{width}}".format("MAKE", width=config.TERM_COLS))
subprocess.run(["make", "--no-print-directory", "-C", config.MINISHELL_DIR],
check=True,
env={"MINISHELL_TEST_FLAGS": "-DMINISHELL_TEST", **os.environ})
print("=" * config.TERM_COLS)
except subprocess.CalledProcessError:
sys.exit(1)
if args.make:
sys.exit(0)
if os.path.exists(config.EXECUTABLES_PATH):
shutil.rmtree(config.EXECUTABLES_PATH)
os.mkdir(config.EXECUTABLES_PATH)
for cmd in config.AVAILABLE_COMMANDS:
cmd_path = distutils.spawn.find_executable(cmd)
if cmd_path is None:
raise RuntimeError
shutil.copy(cmd_path,
os.path.join(config.EXECUTABLES_PATH, cmd))
reference_args = os.environ.get("MINISHELL_TEST_ARGS")
if reference_args is not None:
config.REFERENCE_ARGS.extend(reference_args.split(','))
pager = os.environ.get("MINISHELL_TEST_PAGER")
if pager is not None:
config.PAGER = pager
config.VERBOSE_LEVEL = args.verbose
if args.bonus or os.environ.get("MINISHELL_TEST_BONUS") == "yes":
config.BONUS = True
if args.no_bonus:
config.BONUS = False
config.EXIT_FIRST = args.exit_first
config.CHECK_LEAKS = args.check_leaks
config.RANGE = args.range
config.SHOW_RANGE = args.show_range
if config.RANGE is not None or config.CHECK_LEAKS:
config.SHOW_RANGE = True
Suite.setup(args.suites)
try:
Suite.run_all()
except KeyboardInterrupt:
sandbox.remove()
Suite.summarize()
Suite.save_log()
print("See", config.LOG_PATH, "for more information")
if config.CHECK_LEAKS:
print("HELP: Valgrind is really slow the -x and --range options could be useful"
" (./run -h for more details)")
if args.pager:
subprocess.run([config.PAGER, config.LOG_PATH])
if __name__ == "__main__":
main()
|