From 6d5e3e7d1804ae473678590cbf7991ca8ee8b194 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Thu, 18 Aug 2022 16:21:59 +0800 Subject: [PATCH] Remove a test that uses valgrind Looks like it is causing a false negative on some ARM32-based systems. Fixes https://github.com/rui314/mold/issues/442 --- test/elf/mold-wrapper.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/elf/mold-wrapper.sh b/test/elf/mold-wrapper.sh index ed5f2a7742..c0f485a3e8 100755 --- a/test/elf/mold-wrapper.sh +++ b/test/elf/mold-wrapper.sh @@ -85,9 +85,4 @@ LD_PRELOAD=`pwd`/mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execv | grep -q 'a.sh LD_PRELOAD=`pwd`/mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execvp | grep -q 'a.sh execvp' LD_PRELOAD=`pwd`/mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execvpe | grep -q 'a.sh execvpe bar' -valgrind="$(which valgrind 2> /dev/null; true)" -if [ -n "$valgrind" ]; then - LD_PRELOAD=`pwd`/mold-wrapper.so MOLD_PATH=$t/a.sh "$valgrind" -q $t/exe execl | grep -q 'a.sh execl' -fi - echo OK