From 10fbf813d2972a4dd4d723cb4234c348f0e80f0d Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sun, 25 May 2025 16:43:17 -0700 Subject: [PATCH] llvm: Increase timeout for picolibc testing compiler-rt has very slow floating point emulation which causes the long-double test to timeout on riscv. Increase the timeout by a factor of 20 to avoid this issue. Signed-off-by: Keith Packard --- scripts/llvm/test-support/run-picolibc-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/llvm/test-support/run-picolibc-tests.py b/scripts/llvm/test-support/run-picolibc-tests.py index 8aa3b245..90b88534 100755 --- a/scripts/llvm/test-support/run-picolibc-tests.py +++ b/scripts/llvm/test-support/run-picolibc-tests.py @@ -67,7 +67,7 @@ def run_tests(meson_command, source_dir, build_dir, variant): ) returncode = subprocess.run( - [meson_command, "test"], + [meson_command, "test", "-t", "20"], cwd=build_dir, ).returncode