From e1249f68e57dda2661fc8c7514d132970d5b7cb9 Mon Sep 17 00:00:00 2001 From: ktlo Date: Fri, 11 Oct 2019 10:14:41 +0000 Subject: [PATCH] Tests Updated --- .gitlab-ci.yml | 2 +- test/meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 28a2d94..9cb25a0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -82,7 +82,7 @@ Test:x86_64-linux-gnu: &test MESON_TESTTHREADS: 1 script: - cd build/$TARGET - - meson test --wrap='valgrind --error-exitcode=1 --leak-check=full --tool=memcheck --track-origins=yes' + - meson test --print-errorlogs --suite regular --wrap='valgrind --error-exitcode=1 --leak-check=full --tool=memcheck --track-origins=yes' - cat meson-logs/testlog-valgrind.txt tags: ["default"] artifacts: diff --git a/test/meson.build b/test/meson.build index f5cb4de..eebb1b7 100644 --- a/test/meson.build +++ b/test/meson.build @@ -7,5 +7,5 @@ test_files = [] foreach test_name : test_names test_files += files(test_name + '.cpp') test_exe = executable(test_name + '.test', test_files[-1], link_with : static_lib, include_directories : [includes, src], dependencies : module_deps) - test(test_name, test_exe) + test(test_name, test_exe, suite : 'regular') endforeach