summaryrefslogtreecommitdiff
path: root/egg/test-hex.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: undef G_DISABLE_ASSERTDaiki Ueno2019-06-291-0/+2
| | | | | Since GLib 2.58, g_test_init started to be no-op if a test is compiled with G_DISABLE_ASSERT defined.
* Stop using g_assert() in unit testsNiels De Graef2019-05-121-14/+14
| | | | | | Apart from having more developer-friendly messages if the assertions go wrong, it also prevents the assertions not being run if `G_DISABLE_ASSERT` is defined (e.g. for performance reasons).
* Makefile.am: Use a single Makefile.am and parallel testsStef Walter2014-03-041-0/+123
Allow parallel building and testing by using a single Makefile.am Implement parallel testing using TAP, with various drivers and compilers living in the build/ directory. Fix all sorts of issues that this caused, including builddir != srcdir, leaks in tests and so on. It would have been nice to break out all the above into separate commits ... blush.