-
Notifications
You must be signed in to change notification settings - Fork 1
/
mem_tests.py
47 lines (36 loc) · 980 Bytes
/
mem_tests.py
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
import subprocess
import os
import sys
NO_LEAKS = "All heap blocks were freed -- no leaks are possible"
TEST_EXEC_NAME = "mtg-search-engine-tests"
VALGRIND_OPTS = "--leak-check=full --show-leak-kinds=all --track-fds=yes" # all" silly ubuntu has no all
def tests():
print(
f"Running memcheck for {TEST_EXEC_NAME}",
)
p = subprocess.Popen(
f"valgrind --num-callers=25 {VALGRIND_OPTS} ./{TEST_EXEC_NAME}",
shell=True,
bufsize=4096,
stdin=subprocess.PIPE,
stderr=subprocess.PIPE,
stdout=subprocess.DEVNULL,
)
output = ""
for __line in p.stderr:
line = __line.decode("UTF-8")
print(f">> {line[:-1]}")
output += line
p.wait()
if NO_LEAKS in output and p.returncode == 0:
return 0
else:
return 1
def main():
a = tests()
if a == 1:
print("Tests failed")
sys.exit(1)
sys.exit(0)
if __name__ == "__main__":
main()