summaryrefslogtreecommitdiff
path: root/glib/tests/relation.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: Add SPDX license headers automaticallyPhilip Withnall2022-05-181-0/+2
| | | | | | | | | | | | | | Add SPDX license (but not copyright) headers to all files which follow a certain pattern in their existing non-machine-readable header comment. This commit was entirely generated using the command: ``` git ls-files glib/tests/*.c | xargs perl -0777 -pi -e 's/\n \*\n \* This library is free software; you can redistribute it and\/or\n \* modify it under the terms of the GNU Lesser General Public/\n \*\n \* SPDX-License-Identifier: LGPL-2.1-or-later\n \*\n \* This library is free software; you can redistribute it and\/or\n \* modify it under the terms of the GNU Lesser General Public/igs' ``` Signed-off-by: Philip Withnall <pwithnall@endlessos.org> Helps: #1415
* tests: Fix compilation when GLIB_DISABLE_DEPRECATION_WARNINGS is definedPhilip Withnall2022-03-221-0/+3
| | | | | | | | | This should fix the Coverity build, which runs with `-DGLIB_DISABLE_DEPRECATION_WARNINGS` defined in the environment (see `.gitlab-ci.yml`). See: https://gitlab.gnome.org/GNOME/glib/-/jobs/1907625 Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
* Move tests/relation-test.c to glib/tests/relation.cEmmanuel Fleury2022-03-171-0/+128
Related to issue #1434