aboutsummaryrefslogtreecommitdiff
path: root/elf/tst-valgrind-smoke.sh
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-valgrind-smoke.sh')
-rw-r--r--elf/tst-valgrind-smoke.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/elf/tst-valgrind-smoke.sh b/elf/tst-valgrind-smoke.sh
index 7d0ceac6b1..e33b2fa1d7 100644
--- a/elf/tst-valgrind-smoke.sh
+++ b/elf/tst-valgrind-smoke.sh
@@ -25,7 +25,6 @@ test_wrapper_env="$3"
run_program_env="$4"
library_path="$5"
test_prog="$6"
-valgrind_suppressions="$7"
# Test whether valgrind is available in the test
# environment. If not, skip the test.
@@ -35,7 +34,7 @@ ${test_wrapper_env} ${run_program_env} \
# Test valgrind works with the system ld.so in the test environment
/bin/sh -c \
"${test_wrapper_env} ${run_program_env} \
- valgrind -q --error-exitcode=1 ${valgrind_suppressions} \
+ valgrind -q --error-exitcode=1 \
${system_rtld} /bin/echo ${system_rtld}" || exit 77
# Finally the actual test inside the test environment,
@@ -43,5 +42,5 @@ ${test_wrapper_env} ${run_program_env} \
# the smoke test under valgrind.
/bin/sh -c \
"${test_wrapper_env} ${run_program_env} \
- valgrind -q --error-exitcode=1 ${valgrind_suppressions} \
+ valgrind -q --error-exitcode=1 \
${rtld} --library-path ${library_path} ${test_prog} ${rtld}"