summaryrefslogtreecommitdiff
path: root/libsecret/test-session.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-15/+15
| | | | | | 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).
* Remove useless macro to check GLib versionNiels De Graef2019-01-191-3/+0
| | | | | | We already require GLib to have version 2.38 or higher in `configure.ac`, so no need to check in our code whether we have a version higher than 2.35
* Makefile.am: Use a single Makefile.am and parallel testsStef Walter2014-03-041-0/+234
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.