summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--proxy/tests/meson.build10
1 files changed, 5 insertions, 5 deletions
diff --git a/proxy/tests/meson.build b/proxy/tests/meson.build
index ce0d8d0..1b2163a 100644
--- a/proxy/tests/meson.build
+++ b/proxy/tests/meson.build
@@ -1,14 +1,14 @@
foreach program: proxy_test_programs
- test_conf = configuration_data()
- test_conf.set('installed_tests_dir', installed_tests_execdir)
- test_conf.set('program', program[0])
- test_conf.set('environment', 'GIO_PROXY_TEST_NAME=' + program[1])
-
test_name = program[0]
if program[0] != program[1]
test_name = program[0] + '-' + program[1]
endif
+ test_conf = configuration_data()
+ test_conf.set('installed_tests_dir', installed_tests_execdir)
+ test_conf.set('program', test_name)
+ test_conf.set('environment', 'GIO_PROXY_TEST_NAME=' + program[1])
+
if enable_installed_tests
configure_file(
input: test_template,