blob: 256dab45f99dfeb57bd650f4676fedbe97330b70 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
From 19795af92830251dd03943bda4825def5bf774c4 Mon Sep 17 00:00:00 2001
From: Yash Shinde <Yash.Shinde@windriver.com>
Date: Fri, 5 Apr 2024 08:24:36 -0700
Subject: [PATCH] tests: Skip 2 qemu tests that can hang in oe-selftest
qemumips and qemuppc were leaving stale processes behind after
running glibc oe-selftest. During analysis, it was found that
it was due to "tst-scm_rights" and "tst-scm_rights-time64" tests.
Disable them so that there are no stale processes left behind.
[YOCTO #15423]
https://bugzilla.yoctoproject.org/show_bug.cgi?id=15423
Upstream-Status: Inappropriate [oe-core specific]
Signed-off-by: Yash Shinde <Yash.Shinde@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
sysdeps/unix/sysv/linux/Makefile | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile
index ae66590e91..b2f0469273 100644
--- a/sysdeps/unix/sysv/linux/Makefile
+++ b/sysdeps/unix/sysv/linux/Makefile
@@ -223,7 +223,6 @@ tests += \
tst-process_mrelease \
tst-quota \
tst-rlimit-infinity \
- tst-scm_rights \
tst-sigtimedwait \
tst-sync_file_range \
tst-sysconf-iov_max \
@@ -234,6 +233,8 @@ tests += \
tst-timerfd \
tst-ttyname-direct \
tst-ttyname-namespace \
+ # Skip this test to avoid stale qemu process
+ # tst-scm_rights \
# tests
# process_madvise requires CAP_SYS_ADMIN.
@@ -271,9 +272,10 @@ tests-time64 += \
tst-ntp_gettimex-time64 \
tst-ppoll-time64 \
tst-prctl-time64 \
- tst-scm_rights-time64 \
tst-sigtimedwait-time64 \
tst-timerfd-time64 \
+ # Skip this test to avoid stale qemu process
+ # tst-scm_rights-time64 \
# tests-time64
tests-clone-internal = \
|