Hi Jens, This is the v2, there are 3 patches in this series: - Rename `[0-9a-f]-test.c` to `[0-9a-f].c`. - Append -lpthread for all tests and remove the LDFLAGS override for tests that use pthread. - Append `.t` to the test binary filename for gitignore simplification. ## Changelog v2: - Rename `[0-9a-f]-test.c` to `[0-9a-f].c`. - Append `.t` instead of `.test`. Link v1: https://lore.kernel.org/io-uring/20220403153849.176502-1-ammarfaizi2@xxxxxxxxxxx Signed-off-by: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> --- Ammar Faizi (3): test: Rename `[0-9a-f]-test.c` to `[0-9a-f].c` test/Makefile: Append -lpthread for all tests test/Makefile: Append `.t` to the test binary .gitignore | 131 +------------------ test/{232c93d07b74-test.c => 232c93d07b74.c} | 0 test/{35fa71a030ca-test.c => 35fa71a030ca.c} | 0 test/{500f9fbadef8-test.c => 500f9fbadef8.c} | 0 test/{7ad0e4b2f83c-test.c => 7ad0e4b2f83c.c} | 0 test/{8a9973408177-test.c => 8a9973408177.c} | 0 test/{917257daa0fe-test.c => 917257daa0fe.c} | 0 test/Makefile | 62 +++------ test/{a0908ae19763-test.c => a0908ae19763.c} | 0 test/{a4c0b3decb33-test.c => a4c0b3decb33.c} | 0 test/{b19062a56726-test.c => b19062a56726.c} | 0 test/{b5837bd5311d-test.c => b5837bd5311d.c} | 0 test/{ce593a6c480a-test.c => ce593a6c480a.c} | 0 test/{d4ae271dfaae-test.c => d4ae271dfaae.c} | 0 test/{d77a67ed5f27-test.c => d77a67ed5f27.c} | 0 test/{eeed8b54e0df-test.c => eeed8b54e0df.c} | 0 test/{fc2a85cb02ef-test.c => fc2a85cb02ef.c} | 0 17 files changed, 22 insertions(+), 171 deletions(-) rename test/{232c93d07b74-test.c => 232c93d07b74.c} (100%) rename test/{35fa71a030ca-test.c => 35fa71a030ca.c} (100%) rename test/{500f9fbadef8-test.c => 500f9fbadef8.c} (100%) rename test/{7ad0e4b2f83c-test.c => 7ad0e4b2f83c.c} (100%) rename test/{8a9973408177-test.c => 8a9973408177.c} (100%) rename test/{917257daa0fe-test.c => 917257daa0fe.c} (100%) rename test/{a0908ae19763-test.c => a0908ae19763.c} (100%) rename test/{a4c0b3decb33-test.c => a4c0b3decb33.c} (100%) rename test/{b19062a56726-test.c => b19062a56726.c} (100%) rename test/{b5837bd5311d-test.c => b5837bd5311d.c} (100%) rename test/{ce593a6c480a-test.c => ce593a6c480a.c} (100%) rename test/{d4ae271dfaae-test.c => d4ae271dfaae.c} (100%) rename test/{d77a67ed5f27-test.c => d77a67ed5f27.c} (100%) rename test/{eeed8b54e0df-test.c => eeed8b54e0df.c} (100%) rename test/{fc2a85cb02ef-test.c => fc2a85cb02ef.c} (100%) base-commit: 314dd7ba2aa9d0ba5bb9a6ab28b7204dd319e386 -- Ammar Faizi