From a41424b904c2e14cb395b3736dbd76d727204af9 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Mon, 4 Jan 2021 04:00:51 +0100 Subject: [PATCH] quotearg tests: Avoid test failures on Solaris 11.3. * tests/test-quotearg.sh: Copy the fr/ directory using 'cp -R', not 'cp -a'. --- ChangeLog | 6 ++++++ tests/test-quotearg.sh | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4eec2938ca..c2e48a7b4f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2021-01-03 Bruno Haible + quotearg tests: Avoid test failures on Solaris 11.3. + * tests/test-quotearg.sh: Copy the fr/ directory using 'cp -R', not + 'cp -a'. + +2021-01-03 Bruno Haible + tests: Fix link errors on Solaris, when libunistring-optional is in use. * modules/wcwidth (Link): New section. * modules/wcswidth (Link): New section. diff --git a/tests/test-quotearg.sh b/tests/test-quotearg.sh index b9978671b9..e11b66783a 100755 --- a/tests/test-quotearg.sh +++ b/tests/test-quotearg.sh @@ -29,7 +29,7 @@ if test $locale != none && test $locale != fr; then case "$host_os" in solaris2.11) mkdir -p testlocale - cp -a "$srcdir/testlocale/fr" "testlocale/$locale" + cp -R "$srcdir/testlocale/fr" "testlocale/$locale" localedir="testlocale" ;; esac -- 2.11.4.GIT