Copied over from the original separate work in: https://gitlab.gnome.org/Wormnest/gimp-file-plugin-tests After that further improved and changed and added more file format tests. Added meson.build files to integrate it in our build, but we do not install it for releases.
23 lines
641 B
Meson
23 lines
641 B
Meson
if not stable or not release
|
|
|
|
# This does not get installed for releases
|
|
plugins += {
|
|
'name': 'test-file-plug-ins',
|
|
'srcs': [
|
|
# modules
|
|
'tests/test-file-plug-ins/gimplogger.py',
|
|
'tests/test-file-plug-ins/gimpconfig.py',
|
|
'tests/test-file-plug-ins/gimptestframework.py',
|
|
'tests/test-file-plug-ins/gimpexporttests.py',
|
|
# actual GIMP plug-in
|
|
'tests/test-file-plug-ins/test-file-plug-ins.py',
|
|
# scripts to start the tests in batch mode
|
|
'tests/test-file-plug-ins/batch-import-tests.py',
|
|
'tests/test-file-plug-ins/batch-export-tests.py',
|
|
],
|
|
}
|
|
|
|
# configuration data for the tests
|
|
subdir('tests')
|
|
|
|
endif
|