summaryrefslogtreecommitdiff
path: root/automation/taskcluster
diff options
context:
space:
mode:
authorRobert Relyea <rrelyea@redhat.com>2022-11-30 10:52:12 -0800
committerRobert Relyea <rrelyea@redhat.com>2022-11-30 10:52:12 -0800
commitf64f571088d44007d565c0499f462ae005f63e30 (patch)
treea00ca55008ead2c337d54f09f115586e045f5a55 /automation/taskcluster
parent149ef874d2fa51c88524a6b87b8ded3e658a900d (diff)
downloadnss-hg-f64f571088d44007d565c0499f462ae005f63e30.tar.gz
Bug 1803190 conscious language removal in NSS
Clean up problemantic terms are master, slave, whitelist, blacklist. These are usually easily changes to main/server, client, allowlist, and blocklist (or other similiar terms, which are often more descriptive anyway). Things related to the tls/ssl master key, which part of the tls spec and needs to first be handled by the tls ietf working group. Differential Revision: https://phabricator.services.mozilla.com/D163522
Diffstat (limited to 'automation/taskcluster')
-rwxr-xr-xautomation/taskcluster/scripts/check_abi.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/automation/taskcluster/scripts/check_abi.sh b/automation/taskcluster/scripts/check_abi.sh
index da610955f..0bd8d9693 100755
--- a/automation/taskcluster/scripts/check_abi.sh
+++ b/automation/taskcluster/scripts/check_abi.sh
@@ -89,7 +89,7 @@ check_abi()
abi_diff
}
-#Slightly modified from builbot-slave/build.sh
+#Slightly modified from build.sh in this directory
abi_diff()
{
ABI_PROBLEM_FOUND=0
@@ -123,7 +123,7 @@ abi_diff()
# If abidiff reports an error, or a usage error, or if it sets a result
# bit value this script doesn't know yet about, we'll report failure.
# For ABI changes, we don't yet report an error. We'll compare the
- # result report with our whitelist. This allows us to silence changes
+ # result report with our allowlist. This allows us to silence changes
# that we're already aware of and have been declared acceptable.
REPORT_RET_AS_FAILURE=0
@@ -141,10 +141,10 @@ abi_diff()
fi
if [ $ABIDIFF_ABI_CHANGE -ne 0 ]; then
- echo "Ignoring abidiff result ABI_CHANGE, instead we'll check for non-whitelisted differences."
+ echo "Ignoring abidiff result ABI_CHANGE, instead we'll check for non-allowlisted differences."
fi
if [ $ABIDIFF_ABI_INCOMPATIBLE_CHANGE -ne 0 ]; then
- echo "Ignoring abidiff result ABIDIFF_ABI_INCOMPATIBLE_CHANGE, instead we'll check for non-whitelisted differences."
+ echo "Ignoring abidiff result ABIDIFF_ABI_INCOMPATIBLE_CHANGE, instead we'll check for non-allowlisted differences."
fi
if [ $REPORT_RET_AS_FAILURE -ne 0 ]; then