diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2024-01-03 12:52:44 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-01-03 23:36:34 +0000 |
commit | 30e0c90f3076410aeb7e6bcf3f3844567913f184 (patch) | |
tree | 74627a1bb0e54b4f9c07fac14fc4246e09dadb01 /meta/recipes-core | |
parent | cddf8e9f53df905e17edd0cd72d7a7a505939a18 (diff) | |
download | poky-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')
-rwxr-xr-x | meta/recipes-core/glibc/glibc/run-ptest | 12 |
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 |
23 | tst_time_tmp=$(sed -e "s/-time64$//" <<< ${tst_time64}) | 23 | tst_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 |
26 | for i in ${tst_time_tmp} | 26 | #for i in ${tst_time_tmp} |
27 | do | 27 | #do |
28 | $i >/dev/null 2>&1 | 28 | # $i >/dev/null 2>&1 |
29 | output | 29 | # output |
30 | done | 30 | #done |
31 | 31 | ||
32 | # Run tests supporting only 64 bit time | 32 | # Run tests supporting only 64 bit time |
33 | for i in ${tst_time64} | 33 | for i in ${tst_time64} |