From ff63bde81cd8fd503561b019f71208d29d8cd108 Mon Sep 17 00:00:00 2001 From: Dave Rodgman Date: Fri, 8 Dec 2023 16:07:40 +0000 Subject: [PATCH] Revert use of --keep-going Signed-off-by: Dave Rodgman --- tools/bin/mtest | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/bin/mtest b/tools/bin/mtest index 43ca9d5..a3b3f5f 100755 --- a/tools/bin/mtest +++ b/tools/bin/mtest @@ -691,8 +691,7 @@ def build(target, tests): configure_options(target) - # use -k (--keep-going) to ensure we show all compile errors - make_cmd = ["make", "-k"] + make_cmd = ["make"] if args.jobs is not None: jobs_arg = "-j" if args.jobs == -1 else f"-j{args.jobs}" make_cmd.append(jobs_arg)