1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Description: Skip tests with hardcoded timeouts
Do not execute tests which have a hardcoded timeout,
as these fail especially on low-end hardware like old armhf boards.
Author: felix.moessbauer@siemens.com
Bug: https://gitlab.com/linux-rt/librtpi/-/issues/2
Last-Update: 2024-05-24
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- librtpi.orig/tests/glibc-tests/Makefile.am
+++ librtpi/tests/glibc-tests/Makefile.am
@@ -6,13 +6,13 @@ LDADD = $(top_builddir)/src/librtpi.la -
if ENABLE_CANCELLATION
-check_PROGRAMS = tst-cond1 tst-cond2 tst-cond3 tst-cond4 tst-cond5 tst-cond6 tst-cond7 tst-cond8 tst-cond9 tst-cond10 tst-cond11 tst-cond12 tst-cond13 tst-cond16 tst-cond18 tst-cond19 tst-cond20 tst-cond21 tst-cond22 tst-cond24 tst-cond25 tst-cond-except
-TESTS = tst-cond1 tst-cond2 tst-cond3 tst-cond4 tst-cond5 tst-cond6 tst-cond7 tst-cond8 tst-cond9 tst-cond10 tst-cond11 tst-cond12 tst-cond13 tst-cond16 tst-cond18 tst-cond19 tst-cond20 tst-cond21 tst-cond22 tst-cond24 tst-cond25 tst-cond-except
+check_PROGRAMS = tst-cond1 tst-cond2 tst-cond3 tst-cond4 tst-cond5 tst-cond7 tst-cond8 tst-cond9 tst-cond10 tst-cond12 tst-cond13 tst-cond16 tst-cond18 tst-cond19 tst-cond20 tst-cond21 tst-cond22 tst-cond24 tst-cond25 tst-cond-except
+TESTS = tst-cond1 tst-cond2 tst-cond3 tst-cond4 tst-cond5 tst-cond7 tst-cond8 tst-cond9 tst-cond10 tst-cond12 tst-cond13 tst-cond16 tst-cond18 tst-cond19 tst-cond20 tst-cond21 tst-cond22 tst-cond24 tst-cond25 tst-cond-except
else
-check_PROGRAMS = tst-cond1 tst-cond2 tst-cond3 tst-cond4 tst-cond5 tst-cond6 tst-cond9 tst-cond10 tst-cond11 tst-cond12 tst-cond13 tst-cond16 tst-cond18 tst-cond19 tst-cond20 tst-cond21 tst-cond24
-TESTS = tst-cond1 tst-cond2 tst-cond3 tst-cond4 tst-cond5 tst-cond6 tst-cond9 tst-cond10 tst-cond11 tst-cond12 tst-cond13 tst-cond16 tst-cond18 tst-cond19 tst-cond20 tst-cond21 tst-cond24
+check_PROGRAMS = tst-cond1 tst-cond2 tst-cond3 tst-cond4 tst-cond5 tst-cond9 tst-cond10 tst-cond12 tst-cond13 tst-cond16 tst-cond18 tst-cond19 tst-cond20 tst-cond21 tst-cond24
+TESTS = tst-cond1 tst-cond2 tst-cond3 tst-cond4 tst-cond5 tst-cond9 tst-cond10 tst-cond12 tst-cond13 tst-cond16 tst-cond18 tst-cond19 tst-cond20 tst-cond21 tst-cond24
endif
--- librtpi.orig/tests/libstdc++-tests/Makefile.am
+++ librtpi/tests/libstdc++-tests/Makefile.am
@@ -16,7 +16,6 @@ LDADD = $(top_builddir)/src/librtpi.la -
test_list = \
condition_variable/cons/1 \
condition_variable/members/1 \
- condition_variable/members/2 \
condition_variable/members/53841 \
condition_variable/native_handle/typesizes \
condition_variable/requirements/standard_layout \
|