| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | test: Fix outstanding -Wsign-compare errors | Ben Woosley | 2020-05-08 | 1 | -8/+8 |
| | | |||||
| * | scripted-diff: test: Move setup_common to test library | MarcoFalke | 2019-11-06 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | -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- | ||||
| * | tests: Reduce compilation time and unneccessary recompiles by removing ↵ | practicalswift | 2019-06-26 | 1 | -0/+3 |
| | | | | | unused includes in tests | ||||
| * | test: Create data dir in BasicTestingSetup | MarcoFalke | 2019-06-20 | 1 | -4/+4 |
| | | |||||
| * | scripted-diff: Rename test_bitcoin to test/setup_common | MarcoFalke | 2019-04-11 | 1 | -1/+1 |
| | | | | | | | | | | -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- | ||||
| * | flatfile: Unit tests for FlatFileSeq methods. | Jim Posen | 2019-02-22 | 1 | -0/+123 |