summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2024-01-03 12:52:44 +0100
committerSteve Sakoman <steve@sakoman.com>2024-02-07 04:00:02 -1000
commite513d20afd3b7065c6ed71d2ce4df0c8b630eca1 (patch)
treec9f023092f48384062c110d1d7d482476d5bac17 /meta
parent89b80f507ff84cbadc2536b8e357c67e020e4db6 (diff)
downloadpoky-e513d20afd3b7065c6ed71d2ce4df0c8b630eca1.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: 3d04849c741baeddd0677a18a468603b7112139d) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit c9c7ebd6e447bce19803253afd881854f686b5f6) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta')
-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}