summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@endlessos.org>2022-05-26 17:27:03 +0100
committerPhilip Withnall <pwithnall@endlessos.org>2022-05-26 17:27:03 +0100
commit0dca8bb6aaa2e33a16275f7429306c1e08649d85 (patch)
tree3ee554cd0ba2e0da69b666ff5375740b0c5a9ec3
parentc71d0c53b5e5f10501e03a16e1db347e46cad09a (diff)
downloadglib-0dca8bb6aaa2e33a16275f7429306c1e08649d85.tar.gz
tests: Remove redundant meson commands
The `tests` array is now empty, so everything to do with it can be removed from this file. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
-rw-r--r--tests/meson.build37
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 2b9ce5b1f..ab7f20686 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -15,8 +15,6 @@ test_cargs = ['-DG_LOG_DOMAIN="GLib"', '-UG_DISABLE_ASSERT']
subdir('gobject')
subdir('refcount')
-tests = {}
-
test_extra_programs = {
'slice-test' : {
'extra_sources' : ['memchunks.c'],
@@ -27,41 +25,6 @@ test_extra_programs = {
common_c_args = test_cargs + ['-DGLIB_DISABLE_DEPRECATION_WARNINGS']
common_deps = [libm, thread_dep, libglib_dep]
-foreach test_name, extra_args : tests
- source = extra_args.get('source', test_name + '.c')
- extra_sources = extra_args.get('extra_sources', [])
- install = installed_tests_enabled and extra_args.get('install', true)
- template = extra_args.get('tap', false) ? installed_tests_template_tap : installed_tests_template
-
- if install
- test_conf = configuration_data()
- test_conf.set('installed_tests_dir', installed_tests_execdir)
- test_conf.set('program', test_name)
- test_conf.set('env', '')
- configure_file(
- input: template,
- output: test_name + '.test',
- install_dir: installed_tests_metadir,
- configuration: test_conf
- )
- endif
-
- # FIXME? $(GLIB_DEBUG_FLAGS)
- exe = executable(test_name, [source, extra_sources],
- c_args : common_c_args + extra_args.get('c_args', []),
- dependencies : common_deps + extra_args.get('dependencies', []),
- export_dynamic : extra_args.get('export_dynamic', false),
- include_directories : extra_args.get('include_directories', []),
- install_dir: installed_tests_execdir,
- install: install,
- )
-
- suite = ['glib'] + extra_args.get('suite', [])
- timeout = suite.contains('slow') ? test_timeout_slow : test_timeout
- # FIXME? TESTS_ENVIRONMENT = LIBCHARSET_ALIAS_DIR=$(top_builddir)/glib/libcharset
- test(test_name, exe, env : test_env, timeout : timeout, suite : suite)
-endforeach
-
foreach program_name, extra_args : test_extra_programs
source = extra_args.get('source', program_name + '.c')
extra_sources = extra_args.get('extra_sources', [])