Closed leandro-lucarella-sociomantic closed 6 years ago
Attached fix.
I guess you didn't actually test it, right? I was about to do a simple test.
Usually when I assign a PR to myself is because it's ready to be reviewed (and I appreciate approvals) but I want to do the merging myself (because I'm checking something for example).
My simple test worked, all seems :heavy_check_mark:
I didn't test, no. Will only "approve" next time then :)
When running tests, since the final target is a
test.stamp
instead of producing the binary (because we care about running them, not just building them), the test binaries themselves are considered intermediate files by Make, and normally removed automatically (even if a test failed).To avoid this, we need to mark them as
.PRECIOUS:
, for example for integration tests: