ninenines / erlang.mk

A build tool for Erlang that just works.
https://erlang.mk
ISC License
580 stars 238 forks source link

core/test.mk: Abort build if a test file fails to compile #892

Closed dumbbell closed 4 years ago

dumbbell commented 4 years ago

In commit c55d0dcd6182983521d4ab34478cfe4b093edb12, the recipe was improved to only rebuild out-of-date test files (not everything as it was the case before).

However in the process, the exit status of the Erlang compiler was not checked anymore, leading to build failures in the test directory to be ignored. This patch fixes this bug.

essen commented 4 years ago

Makes sense.

essen commented 4 years ago

Merged, thanks!

dumbbell commented 4 years ago

Thank you!