Skip to content

Commit

Permalink
ssl-tests-nss-client.sh: skip on Alpine Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
zzambers committed Aug 22, 2023
1 parent 7b28f5c commit 20951ba
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions jtreg-wrappers/ssl-tests-nss-client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
set -eu
rm -rf build

if grep -q 'Alpine' /etc/os-release > /dev/null 2>&1 ; then
echo "Skipping on Alpine, as it does not have required NSS tools"
exit 0
fi

if ! type listsuites > /dev/null 2>&1 \
&& ! [ -e "/usr/lib64/nss/unsupported-tools/listsuites" ] \
&& ! [ -e "/usr/lib/nss/unsupported-tools/listsuites" ] ; then
Expand Down

0 comments on commit 20951ba

Please sign in to comment.