From 0dca8bb6aaa2e33a16275f7429306c1e08649d85 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 26 May 2022 17:27:03 +0100 Subject: [PATCH] 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 --- tests/meson.build | 37 ------------------------------------- 1 file changed, 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', [])