summaryrefslogtreecommitdiff
path: root/test/Event.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: Replace g_assert() calls with g_assert_*() callsAlan Coopersmith2022-12-171-4/+5
| | | | | | | | | | | | https://docs.gtk.org/glib/testing.html warns against using g_assert() in test cases, since it is a no-op when compiling with G_DISABLE_ASSERT. The replacement calls also give more detailed messages on failures. Raises the minimum required glib version for building unit tests from 2.16 (released March 2008) to 2.40 (released March 2014) to get support for g_assert_nonnull(). Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* tests: update g_test_bug_base url from bugzilla to gitlabAlan Coopersmith2022-12-171-1/+4
| | | | | | | | | | Also adds a call to g_test_bug() for the one existing testcase associated with a bug in a public bug tracker. Otherwise this is mostly a placeholder for now, as no other tests call g_test_bug() yet to report what bugs they test for. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Add test case for XtAppMainLoop bug 34715Alan Coopersmith2011-03-181-0/+91
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>