From: Paul F. <pa...@so...> - 2025-04-04 20:03:12
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=fc5099c2b73a4d26c8c23659221f566be56f0e82 commit fc5099c2b73a4d26c8c23659221f566be56f0e82 Author: Paul Floyd <pj...@wa...> Date: Fri Apr 4 22:00:38 2025 +0200 Illumos regtest: one filter and one pre script fix filter a change for the bottom of thread stacks and add use the same pre check as Linux for DRD OpenMP tests. Diff: --- drd/tests/run_openmp_test | 2 +- tests/filter_libc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/drd/tests/run_openmp_test b/drd/tests/run_openmp_test index e09b543467..e978625400 100755 --- a/drd/tests/run_openmp_test +++ b/drd/tests/run_openmp_test @@ -13,7 +13,7 @@ if /usr/bin/file "$1" | grep -q 'statically linked'; then exit 1 fi -if [ "$(uname)" = Linux ]; then +if [ "$(uname)" = Linux -o "$(uname)" = SunOS ]; then # Let the dynamic linker/loader print the path of libgomp. See also man ld.so libgomp_path="$(LD_TRACE_LOADED_OBJECTS=1 "$1" \ diff --git a/tests/filter_libc b/tests/filter_libc index d3c875d90f..a99b11f405 100755 --- a/tests/filter_libc +++ b/tests/filter_libc @@ -28,6 +28,7 @@ while (<>) # on Illumos s#_start_crt \(in .*#(below main)#; + s#start_thread#(within libpthread-?.?.so)#; # filter out the exact libc-start.c:### line number. (ppc64*) s/\(libc-start.c:[0-9]*\)$/(in \/...libc...)/; |