diff mbox series

[v2] Take into account ${sysconfdir} in elf/tst-ldconfig-p.sh.

Message ID 20230326192558.64-1-romain.geissler@amadeus.com
State New
Headers show
Series [v2] Take into account ${sysconfdir} in elf/tst-ldconfig-p.sh. | expand

Commit Message

Romain Geissler March 26, 2023, 7:25 p.m. UTC
Hi,

This is a follow up of https://sourceware.org/pipermail/libc-alpha/2023-March/146331.html
this sent by git send-mail, so hopefully the patch applies fine.

Cheers,
Romain


        Take into account ${sysconfdir} in elf/tst-ldconfig-p.sh.

---
 elf/Makefile          |  2 +-
 elf/tst-ldconfig-p.sh | 11 ++++++-----
 2 files changed, 7 insertions(+), 6 deletions(-)

Comments

Adhemerval Zanella Netto March 27, 2023, 5:24 p.m. UTC | #1
On 26/03/23 16:25, Romain Geissler wrote:
> Hi,
> 
> This is a follow up of https://sourceware.org/pipermail/libc-alpha/2023-March/146331.html
> this sent by git send-mail, so hopefully the patch applies fine.
> 
> Cheers,
> Romain
> 
> 
>         Take into account ${sysconfdir} in elf/tst-ldconfig-p.sh.

LGTM, thanks.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>


> 
> ---
>  elf/Makefile          |  2 +-
>  elf/tst-ldconfig-p.sh | 11 ++++++-----
>  2 files changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/elf/Makefile b/elf/Makefile
> index 4d0e04b2a20..262fbd1770c 100644
> --- a/elf/Makefile
> +++ b/elf/Makefile
> @@ -2421,7 +2421,7 @@ $(objpfx)tst-ldconfig-X.out : tst-ldconfig-X.sh $(objpfx)ldconfig
>  	$(evaluate-test)
>  
>  $(objpfx)tst-ldconfig-p.out : tst-ldconfig-p.sh $(objpfx)ldconfig
> -	$(SHELL) $< '$(common-objpfx)' '$(test-wrapper-env)' \
> +	$(SHELL) $< '$(common-objpfx)' '$(sysconfdir)' '$(test-wrapper-env)' \
>  		 '$(run-program-env)' > $@; \
>  	$(evaluate-test)
>  
> diff --git a/elf/tst-ldconfig-p.sh b/elf/tst-ldconfig-p.sh
> index ec937bf4ec0..e966c4d1241 100644
> --- a/elf/tst-ldconfig-p.sh
> +++ b/elf/tst-ldconfig-p.sh
> @@ -23,11 +23,12 @@
>  # involves emulation when running ldconfig).
>  
>  common_objpfx=$1
> -test_wrapper_env=$2
> -run_program_env=$3
> +sysconfdir=$2
> +test_wrapper_env=$3
> +run_program_env=$4
>  
> -if ! test -r /etc/ld.so.cache; then
> -    echo "warning: /etc/ld.so.cache does not exist, test skipped"
> +if ! test -r "${sysconfdir}/ld.so.cache"; then
> +    echo "warning: ${sysconfdir}/ld.so.cache does not exist, test skipped"
>      exit 77
>  fi
>  
> @@ -46,7 +47,7 @@ errors=0
>  case $status in
>      (0)
>  	if head -n 1 "$testout" | \
> -		grep -q "libs found in cache \`/etc/ld.so.cache'\$" ; then
> +		grep -q "libs found in cache \`${sysconfdir}/ld.so.cache'\$" ; then
>  	    echo "info: initial string found" >>"$testout"
>  	else
>  	    echo "error: initial string not found" >>"$testout"
diff mbox series

Patch

diff --git a/elf/Makefile b/elf/Makefile
index 4d0e04b2a20..262fbd1770c 100644
--- a/elf/Makefile
+++ b/elf/Makefile
@@ -2421,7 +2421,7 @@  $(objpfx)tst-ldconfig-X.out : tst-ldconfig-X.sh $(objpfx)ldconfig
 	$(evaluate-test)
 
 $(objpfx)tst-ldconfig-p.out : tst-ldconfig-p.sh $(objpfx)ldconfig
-	$(SHELL) $< '$(common-objpfx)' '$(test-wrapper-env)' \
+	$(SHELL) $< '$(common-objpfx)' '$(sysconfdir)' '$(test-wrapper-env)' \
 		 '$(run-program-env)' > $@; \
 	$(evaluate-test)
 
diff --git a/elf/tst-ldconfig-p.sh b/elf/tst-ldconfig-p.sh
index ec937bf4ec0..e966c4d1241 100644
--- a/elf/tst-ldconfig-p.sh
+++ b/elf/tst-ldconfig-p.sh
@@ -23,11 +23,12 @@ 
 # involves emulation when running ldconfig).
 
 common_objpfx=$1
-test_wrapper_env=$2
-run_program_env=$3
+sysconfdir=$2
+test_wrapper_env=$3
+run_program_env=$4
 
-if ! test -r /etc/ld.so.cache; then
-    echo "warning: /etc/ld.so.cache does not exist, test skipped"
+if ! test -r "${sysconfdir}/ld.so.cache"; then
+    echo "warning: ${sysconfdir}/ld.so.cache does not exist, test skipped"
     exit 77
 fi
 
@@ -46,7 +47,7 @@  errors=0
 case $status in
     (0)
 	if head -n 1 "$testout" | \
-		grep -q "libs found in cache \`/etc/ld.so.cache'\$" ; then
+		grep -q "libs found in cache \`${sysconfdir}/ld.so.cache'\$" ; then
 	    echo "info: initial string found" >>"$testout"
 	else
 	    echo "error: initial string not found" >>"$testout"