From 1121946a9439647558e3bc38c49dbd2265176049 Mon Sep 17 00:00:00 2001 From: Iker Pedrosa Date: Wed, 11 Feb 2026 10:12:17 +0100 Subject: [PATCH] tests/unit: improve .gitignore to ignore all test executables Replace specific test file entries with pattern-based ignoring of all test_* executables while preserving test_*.c source files. Signed-off-by: Iker Pedrosa --- tests/unit/.gitignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/unit/.gitignore b/tests/unit/.gitignore index f331069ea..c7bacf861 100644 --- a/tests/unit/.gitignore +++ b/tests/unit/.gitignore @@ -2,5 +2,6 @@ *.log *.trs -# Specific files to be added each time a new file is included -test_logind \ No newline at end of file +# All test executables +test_* +!test_*.c -- 2.47.3