From: Iker Pedrosa Date: Wed, 11 Feb 2026 09:12:17 +0000 (+0100) Subject: tests/unit: improve .gitignore to ignore all test executables X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;p=thirdparty%2Fshadow.git 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 --- 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