summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glibc
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2024-01-03 12:52:44 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-01-03 23:36:34 +0000
commit30e0c90f3076410aeb7e6bcf3f3844567913f184 (patch)
tree74627a1bb0e54b4f9c07fac14fc4246e09dadb01 /meta/recipes-core/glibc
parentcddf8e9f53df905e17edd0cd72d7a7a505939a18 (diff)
downloadpoky-30e0c90f3076410aeb7e6bcf3f3844567913f184.tar.gz
glibc-y2038-tests: do not run tests using 32 bit time APIs
I'm not sure why this was included and enabled to begin with: the tests predictably mass-fail if system time is set to after y2038. (From OE-Core rev: c9c7ebd6e447bce19803253afd881854f686b5f6) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glibc')
-rwxr-xr-xmeta/recipes-core/glibc/glibc/run-ptest12
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-core/glibc/glibc/run-ptest b/meta/recipes-core/glibc/glibc/run-ptest
index c394b49866..cb71c75682 100755
--- a/meta/recipes-core/glibc/glibc/run-ptest
+++ b/meta/recipes-core/glibc/glibc/run-ptest
@@ -22,12 +22,12 @@ tst_time64=$(ls -r ${PWD}/tests/glibc-ptest/*-time64)
22# related 22# related
23tst_time_tmp=$(sed -e "s/-time64$//" <<< ${tst_time64}) 23tst_time_tmp=$(sed -e "s/-time64$//" <<< ${tst_time64})
24 24
25# Run tests supporting only 32 bit time 25# Do not run tests supporting only 32 bit time
26for i in ${tst_time_tmp} 26#for i in ${tst_time_tmp}
27do 27#do
28 $i >/dev/null 2>&1 28# $i >/dev/null 2>&1
29 output 29# output
30done 30#done
31 31
32# Run tests supporting only 64 bit time 32# Run tests supporting only 64 bit time
33for i in ${tst_time64} 33for i in ${tst_time64}