summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2021-04-06 12:42:17 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2021-04-06 12:42:17 +0100
commitcec34e920211587dec82b531a61497d2b967b75d (patch)
tree687671b7680967836dbb1e39f7b06355bfefd418 /tests
parentf3e8a95849884aaf86e3313e97db332a31e94cb0 (diff)
downloadgdk-pixbuf-cec34e920211587dec82b531a61497d2b967b75d.tar.gz
Disable TAP for tests
Sadly, GTest intercepts debugging messages and prints them as they are; this means that multi-line messages will inevitably break the TAP protocol. GLib 2.68 has started printing out a long g_debug() message on Windows, which ends up failing the whole test suite on the MSYS2 CI jobs.
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 53ae0fb38..7c6cb113a 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -163,7 +163,7 @@ if get_option('installed_tests')
endif
test_deps = gdk_pixbuf_deps + [ gdkpixbuf_dep, ]
-test_args = [ '-k', '--tap' ]
+test_args = [ '-k' ]
test_env = environment()
test_env.set('G_TEST_SRCDIR', meson.current_source_dir())
test_env.set('G_TEST_BUILDDIR', meson.current_build_dir())
@@ -213,7 +213,6 @@ foreach test_name, test_data: installed_tests
args: test_args,
env: test_env,
timeout: timeout,
- protocol: 'tap',
)
endforeach