summaryrefslogtreecommitdiff
path: root/testsuite/reftests/reftest-module.h
Commit message (Collapse)AuthorAgeFilesLines
* test/reftests: Fix build on Visual StudioChun-wei Fan2019-04-011-0/+5
| | | | | | | As we are building the gtkreftestprivate and reftest test libraries as DLLs, we need to export the symbols in there so that things will link. Decorate the symbols with G_MODULE_EXPORT for this purpose.
* gtk-reftest: Allow loading code for reftestsBenjamin Otte2014-05-311-0/+39
When connecting signal names, gtk-reftest now allows you to use a colon in the signal handler name like so: module:function_name where module is a module loaded from the same directory (or the .libs subdirectory for compatibility with uninstalled libtool) as the running test and the function is resolved in that module. Of course, normal function names work as before.