On Tue, Apr 29, 2025 at 06:53:01PM +0100, Seyi Kuforiji wrote: > diff --git a/t/meson.build b/t/meson.build > index 756cb2a2dd..8fa00fc9ef 100644 > --- a/t/meson.build > +++ b/t/meson.build > @@ -1102,7 +1102,6 @@ integration_tests = [ > # sufficient to catch missing test suites in our CI though. > foreach glob, tests : { > 't[0-9][0-9][0-9][0-9]-*.sh': integration_tests, > - 'unit-tests/t-*.c': unit_test_programs, > 'unit-tests/u-*.c': clar_test_suites, > } > actual_tests = run_command(shell, '-c', 'ls ' + glob, Okay. Ideally this would be moved into the next commit where we remove the infrastructure for our old-style unit tests, but we can't because the glob matches nothing anymore and thus causes an error. Also, we have a "check-meson" target in "t/Makefile". Don't we have to remove unit tests from there, too? Patrick