Hi Jens, Two patches in this series. The first patch is SPDX-License-Identifier fix. The second patch is a small improvement for .gitignore w.r.t. test. When adding a new test, we often forget to add the new test binary to `.gitignore`. Append `.test` to the test binary filename, this way we can use a wildcard matching "test/*.test" in `.gitignore` to ignore all test binary files. Goals: - Make the .gitignore simpler. - Avoid the burden of adding a new test to .gitignore. Signed-off-by: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> --- Ammar Faizi (2): src/int_flags.h: Add missing SPDX-License-Identifier test/Makefile: Append `.test` to the test binary filename .gitignore | 132 +----------------------------------------------- src/int_flags.h | 1 + test/Makefile | 8 +-- 3 files changed, 7 insertions(+), 134 deletions(-) base-commit: 314dd7ba2aa9d0ba5bb9a6ab28b7204dd319e386 -- Ammar Faizi