tests: Prevent more accidental test disabling
commit7a6c377f6ba9c86a524965d48849f19a474d5a03
authorEric Blake <eblake@redhat.com>
Thu, 11 Oct 2018 14:47:51 +0000 (11 09:47 -0500)
committerThomas Huth <thuth@redhat.com>
Tue, 16 Oct 2018 16:02:42 +0000 (16 18:02 +0200)
tree80a3d56d0e8046e7278e7f2359f0aed1194b8136
parentba3fa397a1b7b1c43d8cff33f7fdfce52298d287
tests: Prevent more accidental test disabling

GNU make is perfectly happy to use 'check-FOO-y += bar' to
initialize check-FOO-y.  (GNU Automake strictly insists that
you cannot use += until after an initial = per variable, but
thankfully we aren't using automake).

As we have had more than one instance where copy-and-paste of
'check-FOO-y = bar' from a first test under category FOO into
an additional test, which ends up disabling the first (see
commits 992159c7 and 4429532b), it's better to just always use
the form that survives copy-and-paste, even for categories that
don't currently add more than one test.

Done with s/^\(check-[a-z]*-y \)=/\1+=/g

Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/Makefile.include