Move tests/unicode-encoding.c to glib/tests/unicode-encoding.c

Related to issue #1434
This commit is contained in:
Emmanuel Fleury 2022-04-03 12:57:07 +02:00
parent 43759ca951
commit 795952cb8d
4 changed files with 8 additions and 8 deletions

View File

@ -124,6 +124,7 @@ glib_tests = {
'utf8-misc' : {},
'utils' : {},
'unicode' : {},
'unicode-encoding' : {},
'uri' : {},
'1bit-mutex' : {},
'1bit-emufutex' : {
@ -262,6 +263,13 @@ foreach test_name, extra_args : glib_tests
)
endforeach
if installed_tests_enabled
install_data(
'utf8.txt',
install_dir : installed_tests_execdir,
)
endif
executable('spawn-path-search-helper', 'spawn-path-search-helper.c',
c_args : test_cargs,
dependencies : test_deps,

View File

@ -26,7 +26,6 @@ tests = {
'spawn-test' : {},
'thread-test' : {},
'threadpool-test' : {'suite' : ['slow']},
'unicode-encoding' : {},
'module-test-library' : {
'dependencies' : [libgmodule_dep],
'export_dynamic' : true,
@ -58,13 +57,6 @@ else
}
endif
if installed_tests_enabled
install_data(
'utf8.txt',
install_dir : installed_tests_execdir,
)
endif
module_suffix = []
# Keep the autotools convention for shared module suffix because GModule
# depends on it: https://gitlab.gnome.org/GNOME/glib/issues/520