The existing filter test-*[^.c] does not ignore filenames ending with c, so now a specific entry for test-magic is added.
I noticed this after running the tests:
$ make check
...
$ git status
On branch master
Your branch is up to date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
test-magic
nothing added to commit but untracked files present (use "git add" to track)
The existing filter
test-*[^.c]
does not ignore filenames ending withc
, so now a specific entry fortest-magic
is added.I noticed this after running the tests: