$(objpfx)tst-pathopt.out: tst-pathopt.sh $(objpfx)tst-pathopt \
$(objpfx)pathoptobj.so
$(SHELL) $< $(common-objpfx) '$(test-wrapper-env)' \
- '$(run-program-env)'; \
+ '$(run-program-env)' '$(rpath-link)' ; \
$(evaluate-test)
$(objpfx)tst-rtld-load-self.out: tst-rtld-load-self.sh $(objpfx)ld.so
common_objpfx=$1
test_wrapper_env=$2
run_program_env=$3
+# Remove the last space to allow concatenate extra paths.
+library_path=$(echo $4)
test -e ${common_objpfx}elf/will-be-empty &&
rm -fr ${common_objpfx}elf/will-be-empty
${test_wrapper_env} \
${run_program_env} \
-LD_LIBRARY_PATH=${common_objpfx}elf/will-be-empty:${common_objpfx}elf/for-renamed:${common_objpfx}.:${common_objpfx}dlfcn \
+LD_LIBRARY_PATH=$library_path:${common_objpfx}elf/will-be-empty:${common_objpfx}elf/for-renamed:${common_objpfx}.:${common_objpfx}dlfcn \
${common_objpfx}elf/ld.so ${common_objpfx}elf/tst-pathopt \
> ${common_objpfx}elf/tst-pathopt.out
("${test_wrapper_env} ${run_program_env} %s\\\n"
"${common_objpfx}support/test-run-command \\\n"
"${common_objpfx}elf/ld.so \\\n"
- "--library-path ${common_objpfx}elf/%s:"
+ "--library-path $library_path:${common_objpfx}elf/%s:"
"${common_objpfx}elf:${common_objpfx}.:"
"${common_objpfx}dlfcn \\\n"
"${common_objpfx}elf/%s/%s > \\\n"
t.sh.write("common_objpfx=$1\n")
t.sh.write("test_wrapper_env=$2\n")
t.sh.write("run_program_env=$3\n")
+ # Remove the last space to allow concatenate extra paths.
+ t.sh.write("library_path=$(echo $4)\n")
t.sh.write("something_failed=false\n")
# Starting part of Makefile fragment
% (t.test_name, test_srcdir, t.test_name,
expected_output_files))
makefile.write("\t$(SHELL) $< $(common-objpfx) '$(test-wrapper-env)' "
- "'$(run-program-env)' > $@; $(evaluate-test)\n")
+ "'$(run-program-env)' '$(rpath-link)' > $@; $(evaluate-test)\n")
makefile.write("ifeq ($(run-built-tests),yes)\n")
if t.xtest:
makefile.write("xtests-special += $(objpfx)%s.out\n" % (t.test_name))