Skip to content

Commit

Permalink
Merge pull request Mbed-TLS#127 from daverodgman/revert-keep-going
Browse files Browse the repository at this point in the history
Revert use of --keep-going
  • Loading branch information
daverodgman authored Dec 8, 2023
2 parents a19ad39 + ff63bde commit 0799fc2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/bin/mtest
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0799fc2

Please sign in to comment.