mirror of
https://git.yoctoproject.org/poky
synced 2026-05-07 16:59:22 +00:00
gstreamer1.0: improve test reliability
First, libcheck has the ability to increase all test timeouts by an arbitrary multiplier. Because we run our tests on loaded build machines, increase all timeouts by 10x to reduce the chance of load causing failures. Second, use GST_CHECKS_IGNORE to list test cases that should be skipped. Drop skip-aggregator-test.patch as this is now redundant, and also skip gstnetclientclock.c:test_functioning as this is very sensitive to load. [ YOCTO #14808 ] (From OE-Core rev: 13b13b81b91f618c13cf972067c47bd810de852f) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 669d0df81f651f7c033c8cb7872cac5bfe670a4f) Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
committed by
Steve Sakoman
parent
e95fcf9f57
commit
0bffb5eed1
@@ -1,2 +1,16 @@
|
||||
#!/usr/bin/env sh
|
||||
#! /bin/sh
|
||||
|
||||
# Multiply all timeouts by ten so they're more likely to work
|
||||
# on a loaded system.
|
||||
export CK_TIMEOUT_MULTIPLIER=5
|
||||
|
||||
# Skip some tests that we know are problematic
|
||||
export GST_CHECKS_IGNORE=""
|
||||
# gstnetclientclock.c:test_functioning is very sensitive to load
|
||||
GST_CHECKS_IGNORE="$GST_CHECKS_IGNORE,test_functioning"
|
||||
|
||||
# aggregator.c:test_infinite_seek_50_src_live is known to be flaky
|
||||
# https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/410
|
||||
GST_CHECKS_IGNORE="$GST_CHECKS_IGNORE,test_infinite_seek_50_src_live"
|
||||
|
||||
gnome-desktop-testing-runner gstreamer
|
||||
|
||||
Reference in New Issue
Block a user