From: Peter Hutterer Date: Thu, 1 Jun 2017 23:35:56 +0000 (+1000) Subject: meson: add a test setup for valgrind X-Git-Tag: 1.7.901~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=08c622aeb29d651c0645dc4debed9ffaee1a68b6;p=platform%2Fupstream%2Flibinput.git meson: add a test setup for valgrind To run valgrind properly, we need a couple of arguments passed in so we check for leaks and don't fail on bits of the stack we don't control. Add a mesontest setup for this, the lot can now be run by mesontest --setup=valgrind Signed-off-by: Peter Hutterer --- diff --git a/meson.build b/meson.build index e1d18939..93bdfb1e 100644 --- a/meson.build +++ b/meson.build @@ -581,7 +581,7 @@ if get_option('enable-tests') install : false) test('libinput-test-suite-runner', libinput_test_runner, - timeout : 3600) + timeout : 1200) # build-test only executable('test-build-pedantic', @@ -607,6 +607,17 @@ if get_option('enable-tests') include_directories : include_directories('src'), install : false) + valgrind_env = environment() + valgrind_env.set('CK_FORK', 'no') + valgrind_env.set('USING_VALGRIND', '1') + valgrind_suppressions_file = join_paths(meson.source_root(), 'test', 'valgrind.suppressions') + add_test_setup('valgrind', + exe_wrapper : [ valgrind, + '--leak-check=full', + '--error-exitcode=3', + '--suppressions=' + valgrind_suppressions_file ], + env : valgrind_env, + timeout_multiplier : 100) endif ############ output files ############ configure_file(output: 'config.h', install: false, configuration: config_h)