From f6228773b80fb5808d855cbb7e031ec7324462a2 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Sun, 19 Jul 2020 17:09:33 +0200 Subject: add simple integration test with a new dummy benchmark and the system default allocator --- bench.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'bench.py') diff --git a/bench.py b/bench.py index 9b3c1c9..f821e33 100755 --- a/bench.py +++ b/bench.py @@ -130,10 +130,12 @@ def main(): # Prepare allocbench print_status("Building allocbench ...") - make_cmd = ["make"] - if args.verbose < 2: - make_cmd.append("-s") - run_cmd(make_cmd, output_verbosity=1) + # TODO: sort out recursive makes when running integration tests through our Makefile + if not 'MAKELEVEL' in os.environ: + make_cmd = ["make", "-d"] + if args.verbose < 2: + make_cmd.append("-s") + run_cmd(make_cmd, output_verbosity=1) # allocators to benchmark allocators = collect_allocators(args.allocators) -- cgit v1.2.3