[glib-networking/mcatanzaro/session-resumption-rebase: 3/11] tests: simplify meson.build a bit
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib-networking/mcatanzaro/session-resumption-rebase: 3/11] tests: simplify meson.build a bit
- Date: Thu, 14 Nov 2019 23:04:57 +0000 (UTC)
commit 12443c68db97f9bafb80bbabf884d72769a90f34
Author: Michael Catanzaro <mcatanzaro gnome org>
Date: Sat Aug 17 15:59:51 2019 -0500
tests: simplify meson.build a bit
I need to open-code more backend-specific differences here, so keeping
generic support for excluding tests from specific backends no longer
makes a ton of sense. We already have an OpenSSL-specific include here
anyway.
tls/tests/meson.build | 87 ++++++++++++++++++++++++++++-----------------------
1 file changed, 48 insertions(+), 39 deletions(-)
---
diff --git a/tls/tests/meson.build b/tls/tests/meson.build
index ec524c2..0b15a72 100644
--- a/tls/tests/meson.build
+++ b/tls/tests/meson.build
@@ -40,54 +40,63 @@ test_programs = [
['file-database', [], deps, [], []],
['connection', ['mock-interaction.c'], deps, [], [mock_pkcs11_module]],
# DTLS tests are disabled until we fix https://gitlab.gnome.org/GNOME/glib-networking/issues/49
-# ['dtls-connection', ['mock-interaction.c'], deps, ['openssl']],
+# ['dtls-connection', ['mock-interaction.c'], deps, [], [mock_pkcs11_module]],
]
foreach backend: backends
foreach program: test_programs
- if not program[3].contains(backend)
- program_name = program[0] + '-' + backend
-
- test_conf = configuration_data()
- test_conf.set('installed_tests_dir', installed_tests_execdir)
- test_conf.set('program', program_name)
-
- if enable_installed_tests
- configure_file(
- input: test_template,
- output: program_name + '.test',
- install_dir: installed_tests_metadir,
- configuration: test_conf
- )
- endif
-
- test_cflags = cflags + [
- '-DBACKEND="@0@"'.format(backend),
- '-DBACKEND_IS_' + backend.to_upper(),
- ]
+ # OpenSSL does not support DTLS yet.
+ if program[0] == 'dtls-connection' and backend == 'openssl'
+ continue
+ endif
+
+ program_name = program[0] + '-' + backend
+
+ test_conf = configuration_data()
+ test_conf.set('installed_tests_dir', installed_tests_execdir)
+ test_conf.set('program', program_name)
- if backend == 'openssl'
- incs += openssl_inc
- endif
-
- exe = executable(
- program_name,
- [program[0] + '.c'] + program[1],
- include_directories: incs,
- dependencies: program[2],
- c_args: test_cflags,
- install: enable_installed_tests,
- install_dir: installed_tests_execdir
+ if enable_installed_tests
+ configure_file(
+ input: test_template,
+ output: program_name + '.test',
+ install_dir: installed_tests_metadir,
+ configuration: test_conf
)
+ endif
+
+ test_cflags = cflags + [
+ '-DBACKEND="@0@"'.format(backend),
+ '-DBACKEND_IS_' + backend.to_upper(),
+ ]
- test_envs = envs + [
- 'GIO_MODULE_DIR=' + join_paths(meson.build_root(), 'tls', backend)
+ if backend == 'openssl'
+ incs += openssl_inc
+ endif
+
+ exe = executable(
+ program_name,
+ [program[0] + '.c'] + program[1],
+ include_directories: incs,
+ dependencies: program[2],
+ c_args: test_cflags,
+ install: enable_installed_tests,
+ install_dir: installed_tests_execdir
+ )
+
+ test_envs = envs + [
+ 'GIO_MODULE_DIR=' + join_paths(meson.build_root(), 'tls', backend)
+ ]
+
+ if backend == 'gnutls'
+ test_envs += [
+ 'G_TLS_GNUTLS_PRIORITY=NORMAL:%COMPAT:-VERS-TLS1.3'
]
+ endif
- # OpenSSL tests are disabled until we fix https://gitlab.gnome.org/GNOME/glib-networking/issues/54
- if backend != 'openssl'
- test(program_name, exe, env: test_envs, depends: program[4])
- endif
+ # OpenSSL tests are disabled until we fix https://gitlab.gnome.org/GNOME/glib-networking/issues/54
+ if backend != 'openssl'
+ test(program_name, exe, env: test_envs, depends: program[4])
endif
endforeach
endforeach
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]