Ben Woosley
|
df37377e30
|
test: Fix outstanding -Wsign-compare errors
|
2020-05-08 11:18:43 -07:00 |
|
MarcoFalke
|
faec28252c
|
scripted-diff: test: Move setup_common to test library
-BEGIN VERIFY SCRIPT-
# Move files
for f in $(git ls-files src/test/lib/); do git mv $f src/test/util/; done
git mv src/test/setup_common.cpp src/test/util/
git mv src/test/setup_common.h src/test/util/
# Replace Windows paths
sed -i -e 's|\\setup_common|\\util\\setup_common|g' $(git grep -l '\\setup_common')
sed -i -e 's|src\\test\\lib\\|src\\test\\util\\|g' build_msvc/test_bitcoin/test_bitcoin.vcxproj
# Everything else
sed -i -e 's|/setup_common|/util/setup_common|g' $(git grep -l 'setup_common')
sed -i -e 's|test/lib/|test/util/|g' $(git grep -l 'test/lib/')
# Fix include guard
sed -i -e 's|BITCOIN_TEST_SETUP_COMMON_H|BITCOIN_TEST_UTIL_SETUP_COMMON_H|g' ./src/test/util/setup_common.h
sed -i -e 's|BITCOIN_TEST_LIB_|BITCOIN_TEST_UTIL_|g' $(git grep -l 'BITCOIN_TEST_LIB_')
-END VERIFY SCRIPT-
|
2019-11-06 11:56:41 -05:00 |
|
practicalswift
|
9a841696c1
|
tests: Reduce compilation time and unneccessary recompiles by removing unused includes in tests
|
2019-06-26 20:37:48 +02:00 |
|
MarcoFalke
|
fad3d2a624
|
test: Create data dir in BasicTestingSetup
|
2019-06-20 09:31:02 -04:00 |
|
MarcoFalke
|
fa821904bf
|
scripted-diff: Rename test_bitcoin to test/setup_common
-BEGIN VERIFY SCRIPT-
sed -i --regexp-extended -e 's/test_bitcoin\.(h|cpp)/setup_common.\1/g' $(git grep -l test_bitcoin)
git mv ./src/test/test_bitcoin.h ./src/test/setup_common.h
git mv ./src/test/test_bitcoin.cpp ./src/test/setup_common.cpp
sed -i -e 's/BITCOIN_TEST_TEST_BITCOIN_H/BITCOIN_TEST_SETUP_COMMON_H/g' ./src/test/setup_common.h
-END VERIFY SCRIPT-
|
2019-04-11 10:12:36 -04:00 |
|
Jim Posen
|
4c01e4e159
|
flatfile: Unit tests for FlatFileSeq methods.
|
2019-02-22 17:38:45 -08:00 |
|