2016-03-07 12:13:24 +01:00
|
|
|
# Test programs buildable on all platforms
|
|
|
|
gio_tests = [
|
|
|
|
'appmonitor',
|
|
|
|
'async-close-output-stream',
|
|
|
|
'async-splice-output-stream',
|
|
|
|
'buffered-input-stream',
|
|
|
|
'buffered-output-stream',
|
|
|
|
'cancellable',
|
|
|
|
'contexts',
|
|
|
|
'contenttype',
|
|
|
|
'converter-stream',
|
|
|
|
'credentials',
|
|
|
|
'data-input-stream',
|
|
|
|
'data-output-stream',
|
|
|
|
#'defaultvalue', # FIXME: needs giotypefuncs.c generated
|
|
|
|
'fileattributematcher',
|
|
|
|
'filter-streams',
|
|
|
|
'giomodule',
|
|
|
|
'gsubprocess',
|
|
|
|
'g-file',
|
|
|
|
'g-file-info',
|
|
|
|
'g-icon',
|
|
|
|
'gdbus-addresses',
|
|
|
|
'gdbus-message',
|
|
|
|
'inet-address',
|
|
|
|
'io-stream',
|
|
|
|
'memory-input-stream',
|
|
|
|
'memory-output-stream',
|
|
|
|
'monitor',
|
|
|
|
'network-address',
|
|
|
|
'network-monitor',
|
|
|
|
'permission',
|
|
|
|
'pollable',
|
|
|
|
'proxy-test',
|
|
|
|
'readwrite',
|
|
|
|
'simple-async-result',
|
|
|
|
'simple-proxy',
|
|
|
|
'sleepy-stream',
|
|
|
|
'socket',
|
|
|
|
'socket-listener',
|
|
|
|
'socket-service',
|
|
|
|
'srvtarget',
|
|
|
|
'task',
|
|
|
|
'vfs',
|
|
|
|
'volumemonitor',
|
|
|
|
'glistmodel',
|
|
|
|
'testfilemonitor',
|
|
|
|
]
|
|
|
|
|
|
|
|
gio_tests += [
|
|
|
|
'thumbnail-verification',
|
|
|
|
]
|
|
|
|
|
|
|
|
# Test programs buildable on UNIX only
|
|
|
|
|
|
|
|
if host_machine.system() != 'windows'
|
|
|
|
gio_tests += [
|
|
|
|
'file',
|
|
|
|
'gdbus-peer-object-manager',
|
|
|
|
'gdbus-unix-addresses',
|
|
|
|
'live-g-file',
|
|
|
|
'socket-address',
|
|
|
|
'stream-rw_all',
|
|
|
|
'unix-fd',
|
|
|
|
'unix-streams',
|
|
|
|
]
|
|
|
|
endif
|
|
|
|
|
|
|
|
if cc.get_id() == 'gcc' or cc.get_id() == 'clang'
|
|
|
|
gio_tests += [ 'autoptr' ]
|
|
|
|
endif
|
|
|
|
|
|
|
|
test_env = [
|
|
|
|
'G_TEST_SRCDIR=' + meson.current_source_dir(),
|
|
|
|
'G_TEST_BUILDDIR=' + meson.current_build_dir(),
|
|
|
|
]
|
|
|
|
|
|
|
|
test_c_args = [
|
|
|
|
'-DHAVE_CONFIG_H=1',
|
|
|
|
'-DG_LOG_DOMAIN="GLib-GIO"',
|
|
|
|
'-DTEST_SERVICES="@0@/gio/tests/services"'.format(meson.build_root()),
|
|
|
|
]
|
|
|
|
|
|
|
|
foreach test_name : gio_tests
|
|
|
|
src_file = '@0@.c'.format(test_name)
|
|
|
|
# conflicts with glib/tests/autoptr, can't have two targets with same name
|
|
|
|
if test_name == 'autoptr'
|
|
|
|
test_name = 'autoptr-gio'
|
|
|
|
endif
|
|
|
|
exe = executable(test_name, src_file,
|
|
|
|
install : false,
|
|
|
|
c_args : test_c_args,
|
2016-12-20 23:37:24 +01:00
|
|
|
dependencies : [libglib_dep, libgmodule_dep, libgio_dep],
|
2016-03-07 12:13:24 +01:00
|
|
|
)
|
|
|
|
if test_name == 'testfilemonitor'
|
|
|
|
test(test_name, exe, env : test_env, timeout : 45)
|
|
|
|
else
|
|
|
|
test(test_name, exe, env : test_env)
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
uninstalled_test_extra_programs = [
|
|
|
|
'gio-du',
|
|
|
|
'echo-server',
|
|
|
|
'filter-cat',
|
|
|
|
'gapplication-example-actions',
|
|
|
|
'gapplication-example-cmdline',
|
|
|
|
'gapplication-example-cmdline2',
|
|
|
|
'gapplication-example-cmdline3',
|
|
|
|
'gapplication-example-dbushooks',
|
|
|
|
'gapplication-example-open',
|
|
|
|
'gdbus-example-export',
|
|
|
|
'gdbus-example-own-name',
|
|
|
|
'gdbus-example-peer',
|
|
|
|
'gdbus-example-proxy-subclass',
|
|
|
|
'gdbus-example-server',
|
|
|
|
'gdbus-example-subtree',
|
|
|
|
'gdbus-example-watch-name',
|
|
|
|
'gdbus-example-watch-proxy',
|
|
|
|
'gsubprocess-testprog',
|
|
|
|
'httpd',
|
|
|
|
'proxy',
|
|
|
|
'resolver',
|
|
|
|
'send-data',
|
|
|
|
'socket-server',
|
|
|
|
]
|
|
|
|
|
|
|
|
foreach extra_program : uninstalled_test_extra_programs
|
|
|
|
exe = executable(extra_program, '@0@.c'.format(extra_program),
|
|
|
|
install : false,
|
|
|
|
c_args : test_c_args,
|
2016-12-20 23:37:24 +01:00
|
|
|
dependencies : [libglib_dep, libgmodule_dep, libgio_dep],
|
2016-03-07 12:13:24 +01:00
|
|
|
)
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
test_extra_programs = [
|
|
|
|
'gdbus-connection-flush-helper',
|
|
|
|
'gdbus-testserver',
|
|
|
|
]
|
|
|
|
|
|
|
|
exe = executable('tls-certificate', 'tls-certificate.c', 'gtesttlsbackend.c',
|
|
|
|
c_args : test_c_args,
|
2016-12-20 23:37:24 +01:00
|
|
|
dependencies : [libglib_dep, libgmodule_dep, libgio_dep],
|
2016-03-07 12:13:24 +01:00
|
|
|
)
|
|
|
|
test('tls-certificate', exe, env : test_env)
|
|
|
|
|
2016-12-21 03:16:30 +01:00
|
|
|
exe = executable('tls-interaction', 'tls-interaction.c', 'gtesttlsbackend.c',
|
|
|
|
c_args : test_c_args,
|
|
|
|
dependencies : [libglib_dep, libgmodule_dep, libgio_dep],
|
|
|
|
)
|
|
|
|
test('tls-interaction', exe, env : test_env)
|
|
|
|
|
2016-03-07 12:13:24 +01:00
|
|
|
exe = executable('socket-client', 'socket-client.c', 'gtlsconsoleinteraction.c',
|
|
|
|
c_args : test_c_args,
|
2016-12-20 23:37:24 +01:00
|
|
|
dependencies : [libglib_dep, libgmodule_dep, libgio_dep],
|
2016-03-07 12:13:24 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
#exe = executable('gdbus-daemon', 'gdbus-daemon.c', '../gdbusdaemon.c',
|
|
|
|
# #meson.build_root() + '/gio/gdbus-daemon-generated.c', # FIXME
|
|
|
|
# c_args : test_c_args,
|
2016-12-20 23:37:24 +01:00
|
|
|
# dependencies : [libglib_dep, libgmodule_dep, libgio_dep],
|
2016-03-07 12:13:24 +01:00
|
|
|
#)
|
|
|
|
#test('gdbus-daemon', exe, env : test_env)
|
|
|
|
|
2016-12-21 03:16:30 +01:00
|
|
|
# FIXME: Add resources test
|
|
|
|
|
2016-03-07 12:13:24 +01:00
|
|
|
foo = '''
|
|
|
|
c_args_atomic = [ ]
|
|
|
|
if cc.get_id() == 'gcc'
|
|
|
|
c_args_atomic += [ '-Wstrict-aliasing=2' ]
|
|
|
|
endif
|
|
|
|
|
|
|
|
# FIXME: consolidate all of these into the array
|
|
|
|
exe = executable('overflow-fallback', 'overflow.c',
|
|
|
|
c_args : [ '-DHAVE_CONFIG_H=1', '-D_GLIB_TEST_OVERFLOW_FALLBACK' ],
|
2016-12-20 23:37:24 +01:00
|
|
|
dependencies : [libglib_dep],
|
2016-03-07 12:13:24 +01:00
|
|
|
)
|
|
|
|
test('overflow-fallback', exe, env : test_env)
|
|
|
|
|
|
|
|
exe = executable('642026-ec', '642026.c',
|
|
|
|
c_args : [ '-DHAVE_CONFIG_H=1', '-DG_ERRORCHECK_MUTEXES' ],
|
2016-12-20 23:37:24 +01:00
|
|
|
dependencies : [libglib_dep],
|
2016-03-07 12:13:24 +01:00
|
|
|
)
|
|
|
|
test('642026-ec', exe, env : test_env)
|
|
|
|
|
|
|
|
exe = executable('1bit-emufutex', '1bit-mutex.c',
|
|
|
|
c_args : [ '-DHAVE_CONFIG_H=1', '-DTEST_EMULATED_FUTEX' ],
|
2016-12-20 23:37:24 +01:00
|
|
|
dependencies : [libglib_dep],
|
2016-03-07 12:13:24 +01:00
|
|
|
)
|
|
|
|
test('1bit-emufutex', exe, env : test_env)
|
|
|
|
|
|
|
|
if glib_conf.has('HAVE_EVENTFD')
|
|
|
|
exe = executable('gwakeup-fallback', 'gwakeuptest.c', '../gwakeup.c',
|
|
|
|
c_args : [ '-DHAVE_CONFIG_H=1', '-DTEST_EVENTFD_FALLBACK' ],
|
2016-12-20 23:37:24 +01:00
|
|
|
dependencies : [libglib_dep],
|
2016-03-07 12:13:24 +01:00
|
|
|
)
|
|
|
|
test('gwakeup-fallback', exe, env : test_env)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# test-spawn-echo helper binary required by the spawn tests
|
|
|
|
executable('test-spawn-echo', 'test-spawn-echo.c',
|
|
|
|
c_args : [ '-DHAVE_CONFIG_H=1', '-DG_LOG_DOMAIN="GLib"' ],
|
2016-12-20 23:37:24 +01:00
|
|
|
dependencies : [libglib_dep],
|
2016-03-07 12:13:24 +01:00
|
|
|
)
|
|
|
|
'''
|
|
|
|
|
|
|
|
subdir('modules')
|