aboutsummaryrefslogtreecommitdiff
path: root/test cases/common
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-01-11 19:30:11 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-15 21:54:26 +0200
commit11f9425a5e123e7e4bb6296f4453a8e072eb95ed (patch)
treea20c91ddb92438ca27eba83b5ed8b73f6b839c24 /test cases/common
parentcfc33ac4212cb59b4ace3d3f404227366ffa5daf (diff)
downloadmeson-11f9425a5e123e7e4bb6296f4453a8e072eb95ed.zip
meson-11f9425a5e123e7e4bb6296f4453a8e072eb95ed.tar.gz
meson-11f9425a5e123e7e4bb6296f4453a8e072eb95ed.tar.bz2
Can use targets directly in test arguments.
Diffstat (limited to 'test cases/common')
-rw-r--r--test cases/common/125 shared module/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/125 shared module/meson.build b/test cases/common/125 shared module/meson.build
index 6fd21c2..7c15bcc 100644
--- a/test cases/common/125 shared module/meson.build
+++ b/test cases/common/125 shared module/meson.build
@@ -8,5 +8,5 @@ l = shared_library('runtime', 'runtime.c')
# at runtime
m = shared_module('mymodule', 'module.c')
e = executable('prog', 'prog.c', link_with : l, dependencies : dl)
-test('import test', e, args : [m.full_path()])
+test('import test', e, args : m)