summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTomas Popela <tpopela@redhat.com>2017-11-13 10:00:07 +0100
committerTomas Popela <tpopela@redhat.com>2018-04-11 12:39:19 +0200
commit3cbe543b86716d29422265fe7ce4e59a3035869f (patch)
tree54f0ce5c764a7db3c04b4bc503c05e40ca03e347 /tests
parent746f8fca93630009c948ed55cc30e4031e72b0b3 (diff)
downloadlibsoup-3cbe543b86716d29422265fe7ce4e59a3035869f.tar.gz
Test utility library in named liblibtest
Don't use liblibtest, but libtest-utils as we can't use libtest as in autotools port as we can't use the test keyword for library() target (it's an internal Meson keyword)
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 3a96b0b4..3114143c 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -1,4 +1,4 @@
-libtest = library('libtest', 'test-utils.c', 'test-utils.h',
+test_utils = library('test-utils', 'test-utils.c', 'test-utils.h',
install : false,
c_args : '-DAPACHE_HTTPD=' + cdata.get('APACHE_HTTPD'),
dependencies : [glib_dep, libsoup_dep])
@@ -45,7 +45,7 @@ tests = [
foreach test: tests
auth_test = executable('@0@-test'.format(test), '@0@-test.c'.format(test),
- link_with: libtest,
+ link_with: test_utils,
dependencies : [glib_dep, libsoup_dep])
endforeach