You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
715 B
20 lines
715 B
7 years ago
|
#!/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.
|
||
|
#
|
||
|
# Check the test suite naming convention
|
||
|
|
||
|
NAMING_INCONSISTENCIES=$(git grep -E '^BOOST_FIXTURE_TEST_SUITE\(' -- \
|
||
|
"src/test/**.cpp" "src/wallet/test/**.cpp" | \
|
||
|
grep -vE '/(.*?)\.cpp:BOOST_FIXTURE_TEST_SUITE\(\1, .*\)$')
|
||
|
if [[ ${NAMING_INCONSISTENCIES} != "" ]]; then
|
||
|
echo "The test suite in file src/test/foo_tests.cpp should be named"
|
||
|
echo "\"foo_tests\". Please make sure the following test suites follow"
|
||
|
echo "that convention:"
|
||
|
echo
|
||
|
echo "${NAMING_INCONSISTENCIES}"
|
||
|
exit 1
|
||
|
fi
|