mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
Merge #13454: Make sure LC_ALL=C is set in all shell scripts
47776a958b08382d76d69b5df7beed807af168b3 Add linter: Make sure all shell scripts opt out of locale dependence using "export LC_ALL=C" (practicalswift) 3352da8da1243c03fc83ba678d2f5d193bd5a0c2 Add "export LC_ALL=C" to all shell scripts (practicalswift) Pull request description: ~~Make sure `LC_ALL=C` is set when using `grep` range expressions.~~ Make sure `LC_ALL=C` is set in all shell scripts. From the `grep(1)` documentation: > Within a bracket expression, a range expression consists of two characters separated by a hyphen. It matches any single character that sorts between the two characters, inclusive, using the locale's collating sequence and character set. For example, in the default C locale, `[a-d]` is equivalent to `[abcd]`. Many locales sort characters in dictionary order, and in these locales `[a-d]` is typically not equivalent to `[abcd]`; it might be equivalent to `[aBbCcDd]`, for example. To obtain the traditional interpretation of bracket expressions, you can use the C locale by setting the `LC_ALL` environment variable to the value C. Context: [Locale issue found when reviewing #13450](https://github.com/bitcoin/bitcoin/pull/13450/files#r194877736) Tree-SHA512: fd74d2612998f9b49ef9be24410e505d8c842716f84d085157fc7f9799d40e8a7b4969de783afcf99b7fae4f91bbb4559651f7dd6578a6a081a50bdea29f0909
This commit is contained in:
parent
4a5dd0d80f
commit
cb5d0d8b99
@ -3,6 +3,7 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
set -e
|
set -e
|
||||||
srcdir="$(dirname $0)"
|
srcdir="$(dirname $0)"
|
||||||
cd "$srcdir"
|
cd "$srcdir"
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
# The resulting script should exactly transform the previous commit into the current
|
# The resulting script should exactly transform the previous commit into the current
|
||||||
# one. Any remaining diff signals an error.
|
# one. Any remaining diff signals an error.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
if test "x$1" = "x"; then
|
if test "x$1" = "x"; then
|
||||||
echo "Usage: $0 <commit>..."
|
echo "Usage: $0 <commit>..."
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
TOPDIR=${TOPDIR:-$(git rev-parse --show-toplevel)}
|
TOPDIR=${TOPDIR:-$(git rev-parse --show-toplevel)}
|
||||||
BUILDDIR=${BUILDDIR:-$TOPDIR}
|
BUILDDIR=${BUILDDIR:-$TOPDIR}
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
DIR="$1"
|
DIR="$1"
|
||||||
COMMIT="$2"
|
COMMIT="$2"
|
||||||
if [ -z "$COMMIT" ]; then
|
if [ -z "$COMMIT" ]; then
|
||||||
|
@ -7,6 +7,10 @@
|
|||||||
# This script runs all contrib/devtools/lint-*.sh files, and fails if any exit
|
# This script runs all contrib/devtools/lint-*.sh files, and fails if any exit
|
||||||
# with a non-zero status code.
|
# with a non-zero status code.
|
||||||
|
|
||||||
|
# This script is intentionally locale dependent by not setting "export LC_ALL=C"
|
||||||
|
# in order to allow for the executed lint scripts to opt in or opt out of locale
|
||||||
|
# dependence themselves.
|
||||||
|
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
SCRIPTDIR=$(dirname "${BASH_SOURCE[0]}")
|
SCRIPTDIR=$(dirname "${BASH_SOURCE[0]}")
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#
|
#
|
||||||
# Check include guards.
|
# Check include guards.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
HEADER_ID_PREFIX="BITCOIN_"
|
HEADER_ID_PREFIX="BITCOIN_"
|
||||||
HEADER_ID_SUFFIX="_H"
|
HEADER_ID_SUFFIX="_H"
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
# Guard against accidental introduction of new Boost dependencies.
|
# Guard against accidental introduction of new Boost dependencies.
|
||||||
# Check includes: Check for duplicate includes. Enforce bracket syntax includes.
|
# Check includes: Check for duplicate includes. Enforce bracket syntax includes.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
IGNORE_REGEXP="/(leveldb|secp256k1|univalue)/"
|
IGNORE_REGEXP="/(leveldb|secp256k1|univalue)/"
|
||||||
|
|
||||||
filter_suffix() {
|
filter_suffix() {
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
# There are some instances of LogPrintf() in comments. Those can be
|
# There are some instances of LogPrintf() in comments. Those can be
|
||||||
# ignored
|
# ignored
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
UNTERMINATED_LOGS=$(git grep "LogPrintf(" -- "*.cpp" | \
|
UNTERMINATED_LOGS=$(git grep "LogPrintf(" -- "*.cpp" | \
|
||||||
grep -v '\\n"' | \
|
grep -v '\\n"' | \
|
||||||
grep -v "/\* Continued \*/" | \
|
grep -v "/\* Continued \*/" | \
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Shebang must use python3 (not python or python2)
|
# Shebang must use python3 (not python or python2)
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
EXIT_CODE=0
|
EXIT_CODE=0
|
||||||
for PYTHON_FILE in $(git ls-files -- "*.py"); do
|
for PYTHON_FILE in $(git ls-files -- "*.py"); do
|
||||||
if [[ $(head -c 2 "${PYTHON_FILE}") == "#!" &&
|
if [[ $(head -c 2 "${PYTHON_FILE}") == "#!" &&
|
||||||
|
@ -6,6 +6,8 @@
|
|||||||
#
|
#
|
||||||
# Check for specified flake8 warnings in python files.
|
# Check for specified flake8 warnings in python files.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
|
|
||||||
# E112 expected an indented block
|
# E112 expected an indented block
|
||||||
# E113 unexpected indentation
|
# E113 unexpected indentation
|
||||||
# E115 expected an indented block (comment)
|
# E115 expected an indented block (comment)
|
||||||
|
@ -6,6 +6,10 @@
|
|||||||
#
|
#
|
||||||
# Check for shellcheck warnings in shell scripts.
|
# Check for shellcheck warnings in shell scripts.
|
||||||
|
|
||||||
|
# This script is intentionally locale dependent by not setting "export LC_ALL=C"
|
||||||
|
# to allow running certain versions of shellcheck that core dump when LC_ALL=C
|
||||||
|
# is set.
|
||||||
|
|
||||||
# Disabled warnings:
|
# Disabled warnings:
|
||||||
# SC2001: See if you can use ${variable//search/replace} instead.
|
# SC2001: See if you can use ${variable//search/replace} instead.
|
||||||
# SC2004: $/${} is unnecessary on arithmetic variables.
|
# SC2004: $/${} is unnecessary on arithmetic variables.
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#
|
#
|
||||||
# Check the test suite naming conventions
|
# Check the test suite naming conventions
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
EXIT_CODE=0
|
EXIT_CODE=0
|
||||||
|
|
||||||
NAMING_INCONSISTENCIES=$(git grep -E '^BOOST_FIXTURE_TEST_SUITE\(' -- \
|
NAMING_INCONSISTENCIES=$(git grep -E '^BOOST_FIXTURE_TEST_SUITE\(' -- \
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
# We can't run this check unless we know the commit range for the PR.
|
# We can't run this check unless we know the commit range for the PR.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
while getopts "?" opt; do
|
while getopts "?" opt; do
|
||||||
case $opt in
|
case $opt in
|
||||||
?)
|
?)
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
UNSIGNED="$1"
|
UNSIGNED="$1"
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
ROOTDIR=dist
|
ROOTDIR=dist
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
INPUTFILE="Xcode_7.3.1.dmg"
|
INPUTFILE="Xcode_7.3.1.dmg"
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
#network interface on which to limit traffic
|
#network interface on which to limit traffic
|
||||||
IF="eth0"
|
IF="eth0"
|
||||||
#limit of the network interface in question
|
#limit of the network interface in question
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
INPUT=$(cat /dev/stdin)
|
INPUT=$(cat /dev/stdin)
|
||||||
VALID=false
|
VALID=false
|
||||||
REVSIG=false
|
REVSIG=false
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
if ! [[ "$2" =~ ^(git@)?(www.)?github.com(:|/)dashpay/dash(.git)?$ ]]; then
|
if ! [[ "$2" =~ ^(git@)?(www.)?github.com(:|/)dashpay/dash(.git)?$ ]]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
### The script returns 0 if everything passes the checks. It returns 1 if either the
|
### The script returns 0 if everything passes the checks. It returns 1 if either the
|
||||||
### signature check or the hash check doesn't pass. If an error occurs the return value is 2
|
### signature check or the hash check doesn't pass. If an error occurs the return value is 2
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
function clean_up {
|
function clean_up {
|
||||||
for file in $*
|
for file in $*
|
||||||
do
|
do
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
if [ -z "$OSSLSIGNCODE" ]; then
|
if [ -z "$OSSLSIGNCODE" ]; then
|
||||||
OSSLSIGNCODE=osslsigncode
|
OSSLSIGNCODE=osslsigncode
|
||||||
fi
|
fi
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
if [ $# -gt 1 ]; then
|
if [ $# -gt 1 ]; then
|
||||||
cd "$2" || exit 1
|
cd "$2" || exit 1
|
||||||
fi
|
fi
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
FRAMEDIR=$(dirname $0)
|
FRAMEDIR=$(dirname $0)
|
||||||
for i in {0..35}
|
for i in {0..35}
|
||||||
do
|
do
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
KNOWN_VIOLATIONS=(
|
KNOWN_VIOLATIONS=(
|
||||||
"src/base58.cpp:.*isspace"
|
"src/base58.cpp:.*isspace"
|
||||||
"src/bitcoin-tx.cpp.*stoul"
|
"src/bitcoin-tx.cpp.*stoul"
|
||||||
|
24
test/lint/lint-shell-locale.sh
Executable file
24
test/lint/lint-shell-locale.sh
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# Copyright (c) 2018 The Bitcoin Core developers
|
||||||
|
# Distributed under the MIT software license, see the accompanying
|
||||||
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
#
|
||||||
|
# Make sure all shell scripts:
|
||||||
|
# a.) explicitly opt out of locale dependence using "export LC_ALL=C", or
|
||||||
|
# b.) explicitly opt in to locale dependence using the annotation below.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
|
|
||||||
|
EXIT_CODE=0
|
||||||
|
for SHELL_SCRIPT in $(git ls-files -- "*.sh" | grep -vE "src/(secp256k1|univalue)/"); do
|
||||||
|
if grep -q "# This script is intentionally locale dependent by not setting \"export LC_ALL=C\"" "${SHELL_SCRIPT}"; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
FIRST_NON_COMMENT_LINE=$(grep -vE '^(#.*|)$' "${SHELL_SCRIPT}" | head -1)
|
||||||
|
if [[ ${FIRST_NON_COMMENT_LINE} != "export LC_ALL=C" ]]; then
|
||||||
|
echo "Missing \"export LC_ALL=C\" (to avoid locale dependence) as first non-comment non-empty line in ${SHELL_SCRIPT}"
|
||||||
|
EXIT_CODE=1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
exit ${EXIT_CODE}
|
Loading…
Reference in New Issue
Block a user