Skip to content

Commit 0799fc2

Browse files
authored
Merge pull request #127 from daverodgman/revert-keep-going
Revert use of --keep-going
2 parents a19ad39 + ff63bde commit 0799fc2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/bin/mtest

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -691,8 +691,7 @@ def build(target, tests):
691691

692692
configure_options(target)
693693

694-
# use -k (--keep-going) to ensure we show all compile errors
695-
make_cmd = ["make", "-k"]
694+
make_cmd = ["make"]
696695
if args.jobs is not None:
697696
jobs_arg = "-j" if args.jobs == -1 else f"-j{args.jobs}"
698697
make_cmd.append(jobs_arg)

0 commit comments

Comments
 (0)