Skip to content

Commit e567713

Browse files
Do not use uppercase characters in source code filenames
1 parent 419a198 commit e567713

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Makefile.bench.include

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bench_bench_bitcoin_SOURCES = \
1717
bench/bench.h \
1818
bench/checkblock.cpp \
1919
bench/checkqueue.cpp \
20-
bench/Examples.cpp \
20+
bench/examples.cpp \
2121
bench/rollingbloom.cpp \
2222
bench/crypto_hash.cpp \
2323
bench/ccoins_caching.cpp \

src/Makefile.test.include

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ BITCOIN_TESTS =\
4646
test/compress_tests.cpp \
4747
test/crypto_tests.cpp \
4848
test/cuckoocache_tests.cpp \
49-
test/DoS_tests.cpp \
49+
test/denialofservice_tests.cpp \
5050
test/getarg_tests.cpp \
5151
test/hash_tests.cpp \
5252
test/key_io_tests.cpp \
@@ -71,7 +71,7 @@ BITCOIN_TESTS =\
7171
test/rpc_tests.cpp \
7272
test/sanity_tests.cpp \
7373
test/scheduler_tests.cpp \
74-
test/script_P2SH_tests.cpp \
74+
test/script_p2sh_tests.cpp \
7575
test/script_tests.cpp \
7676
test/script_standard_tests.cpp \
7777
test/scriptnum_tests.cpp \
File renamed without changes.

src/net_processing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ static void FindNextBlocksToDownload(NodeId nodeid, unsigned int count, std::vec
560560
} // namespace
561561

562562
// This function is used for testing the stale tip eviction logic, see
563-
// DoS_tests.cpp
563+
// denialofservice_tests.cpp
564564
void UpdateLastBlockAnnounceTime(NodeId node, int64_t time_in_seconds)
565565
{
566566
LOCK(cs_main);

src/test/DoS_tests.cpp renamed to src/test/denialofservice_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ static NodeId id = 0;
4242

4343
void UpdateLastBlockAnnounceTime(NodeId node, int64_t time_in_seconds);
4444

45-
BOOST_FIXTURE_TEST_SUITE(DoS_tests, TestingSetup)
45+
BOOST_FIXTURE_TEST_SUITE(denialofservice_tests, TestingSetup)
4646

4747
// Test eviction of an outbound peer whose chain never advances
4848
// Mock a node connection, and use mocktime to simulate a peer

src/test/script_P2SH_tests.cpp renamed to src/test/script_p2sh_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Verify(const CScript& scriptSig, const CScript& scriptPubKey, bool fStrict, Scri
4646
}
4747

4848

49-
BOOST_FIXTURE_TEST_SUITE(script_P2SH_tests, BasicTestingSetup)
49+
BOOST_FIXTURE_TEST_SUITE(script_p2sh_tests, BasicTestingSetup)
5050

5151
BOOST_AUTO_TEST_CASE(sign)
5252
{

0 commit comments

Comments
 (0)