diff --git a/src/test/prevector_tests.cpp b/src/test/prevector_tests.cpp
index 610e5808f..888b6b3e3 100644
--- a/src/test/prevector_tests.cpp
+++ b/src/test/prevector_tests.cpp
@@ -1,268 +1,268 @@
 // Copyright (c) 2015-2016 The Bitcoin Core developers
 // Distributed under the MIT software license, see the accompanying
 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
 
 #include "prevector.h"
 #include <vector>
 
 #include "serialize.h"
 #include "streams.h"
 
 #include "test/test_bitcoin.h"
 #include "test/test_random.h"
 
 #include <boost/range/adaptor/reversed.hpp>
 #include <boost/test/unit_test.hpp>
 
-BOOST_FIXTURE_TEST_SUITE(PrevectorTests, TestingSetup)
+BOOST_FIXTURE_TEST_SUITE(prevector_tests, TestingSetup)
 
 template <unsigned int N, typename T> class prevector_tester {
     typedef std::vector<T> realtype;
     realtype real_vector;
     realtype real_vector_alt;
 
     typedef prevector<N, T> pretype;
     pretype pre_vector;
     pretype pre_vector_alt;
 
     typedef typename pretype::size_type Size;
     bool passed = true;
     FastRandomContext rand_cache;
 
     template <typename A, typename B> void local_check_equal(A a, B b) {
         local_check(a == b);
     }
     void local_check(bool b) { passed &= b; }
     void test() {
         const pretype &const_pre_vector = pre_vector;
         local_check_equal(real_vector.size(), pre_vector.size());
         local_check_equal(real_vector.empty(), pre_vector.empty());
         for (Size s = 0; s < real_vector.size(); s++) {
             local_check(real_vector[s] == pre_vector[s]);
             local_check(&(pre_vector[s]) == &(pre_vector.begin()[s]));
             local_check(&(pre_vector[s]) == &*(pre_vector.begin() + s));
             local_check(&(pre_vector[s]) ==
                         &*((pre_vector.end() + s) - real_vector.size()));
         }
         // local_check(realtype(pre_vector) == real_vector);
         local_check(pretype(real_vector.begin(), real_vector.end()) ==
                     pre_vector);
         local_check(pretype(pre_vector.begin(), pre_vector.end()) ==
                     pre_vector);
         size_t pos = 0;
         for (const T &v : pre_vector) {
             local_check(v == real_vector[pos++]);
         }
         // FIXME: For some reason, the prevector iterrator doesn't conform to
         // what boost::adaptors::reverse expect.
         for (const T &v : boost::adaptors::reverse(pre_vector)) {
             local_check(v == real_vector[--pos]);
         }
         for (const T &v : const_pre_vector) {
             local_check(v == real_vector[pos++]);
         }
         for (const T &v : boost::adaptors::reverse(const_pre_vector)) {
             local_check(v == real_vector[--pos]);
         }
         CDataStream ss1(SER_DISK, 0);
         CDataStream ss2(SER_DISK, 0);
         ss1 << real_vector;
         ss2 << pre_vector;
         local_check_equal(ss1.size(), ss2.size());
         for (Size s = 0; s < ss1.size(); s++) {
             local_check_equal(ss1[s], ss2[s]);
         }
     }
 
 public:
     void resize(Size s) {
         real_vector.resize(s);
         local_check_equal(real_vector.size(), s);
         pre_vector.resize(s);
         local_check_equal(pre_vector.size(), s);
         test();
     }
 
     void reserve(Size s) {
         real_vector.reserve(s);
         local_check(real_vector.capacity() >= s);
         pre_vector.reserve(s);
         local_check(pre_vector.capacity() >= s);
         test();
     }
 
     void insert(Size position, const T &value) {
         real_vector.insert(real_vector.begin() + position, value);
         pre_vector.insert(pre_vector.begin() + position, value);
         test();
     }
 
     void insert(Size position, Size count, const T &value) {
         real_vector.insert(real_vector.begin() + position, count, value);
         pre_vector.insert(pre_vector.begin() + position, count, value);
         test();
     }
 
     template <typename I> void insert_range(Size position, I first, I last) {
         real_vector.insert(real_vector.begin() + position, first, last);
         pre_vector.insert(pre_vector.begin() + position, first, last);
         test();
     }
 
     void erase(Size position) {
         real_vector.erase(real_vector.begin() + position);
         pre_vector.erase(pre_vector.begin() + position);
         test();
     }
 
     void erase(Size first, Size last) {
         real_vector.erase(real_vector.begin() + first,
                           real_vector.begin() + last);
         pre_vector.erase(pre_vector.begin() + first, pre_vector.begin() + last);
         test();
     }
 
     void update(Size pos, const T &value) {
         real_vector[pos] = value;
         pre_vector[pos] = value;
         test();
     }
 
     void push_back(const T &value) {
         real_vector.push_back(value);
         pre_vector.push_back(value);
         test();
     }
 
     void pop_back() {
         real_vector.pop_back();
         pre_vector.pop_back();
         test();
     }
 
     void clear() {
         real_vector.clear();
         pre_vector.clear();
     }
 
     void assign(Size n, const T &value) {
         real_vector.assign(n, value);
         pre_vector.assign(n, value);
     }
 
     Size size() { return real_vector.size(); }
 
     Size capacity() { return pre_vector.capacity(); }
 
     void shrink_to_fit() {
         pre_vector.shrink_to_fit();
         test();
     }
 
     void swap() {
         real_vector.swap(real_vector_alt);
         pre_vector.swap(pre_vector_alt);
         test();
     }
 
     void move() {
         real_vector = std::move(real_vector_alt);
         real_vector_alt.clear();
         pre_vector = std::move(pre_vector_alt);
         pre_vector_alt.clear();
     }
 
     void copy() {
         real_vector = real_vector_alt;
         pre_vector = pre_vector_alt;
     }
 
     ~prevector_tester() {
         BOOST_CHECK_MESSAGE(passed,
                             "insecure_rand_Rz: " << rand_cache.Rz
                                                  << ", insecure_rand_Rw: "
                                                  << rand_cache.Rw);
     }
     prevector_tester() {
         seed_insecure_rand();
         rand_cache = insecure_rand_ctx;
     }
 };
 
 BOOST_AUTO_TEST_CASE(PrevectorTestInt) {
     for (int j = 0; j < 64; j++) {
         prevector_tester<8, int> test;
         for (int i = 0; i < 2048; i++) {
             int r = insecure_rand();
             if ((r % 4) == 0) {
                 test.insert(insecure_rand() % (test.size() + 1),
                             insecure_rand());
             }
             if (test.size() > 0 && ((r >> 2) % 4) == 1) {
                 test.erase(insecure_rand() % test.size());
             }
             if (((r >> 4) % 8) == 2) {
                 int new_size = std::max<int>(
                     0,
                     std::min<int>(30, test.size() + (insecure_rand() % 5) - 2));
                 test.resize(new_size);
             }
             if (((r >> 7) % 8) == 3) {
                 test.insert(insecure_rand() % (test.size() + 1),
                             1 + (insecure_rand() % 2), insecure_rand());
             }
             if (((r >> 10) % 8) == 4) {
                 int del = std::min<int>(test.size(), 1 + (insecure_rand() % 2));
                 int beg = insecure_rand() % (test.size() + 1 - del);
                 test.erase(beg, beg + del);
             }
             if (((r >> 13) % 16) == 5) {
                 test.push_back(insecure_rand());
             }
             if (test.size() > 0 && ((r >> 17) % 16) == 6) {
                 test.pop_back();
             }
             if (((r >> 21) % 32) == 7) {
                 int values[4];
                 int num = 1 + (insecure_rand() % 4);
                 for (int k = 0; k < num; k++) {
                     values[k] = insecure_rand();
                 }
                 test.insert_range(insecure_rand() % (test.size() + 1), values,
                                   values + num);
             }
             if (((r >> 26) % 32) == 8) {
                 int del = std::min<int>(test.size(), 1 + (insecure_rand() % 4));
                 int beg = insecure_rand() % (test.size() + 1 - del);
                 test.erase(beg, beg + del);
             }
             r = insecure_rand();
             if (r % 32 == 9) {
                 test.reserve(insecure_rand() % 32);
             }
             if ((r >> 5) % 64 == 10) {
                 test.shrink_to_fit();
             }
             if (test.size() > 0) {
                 test.update(insecure_rand() % test.size(), insecure_rand());
             }
             if (((r >> 11) % 1024) == 11) {
                 test.clear();
             }
             if (((r >> 21) % 512) == 12) {
                 test.assign(insecure_rand() % 32, insecure_rand());
             }
             if (((r >> 15) % 8) == 3) {
                 test.swap();
             }
             if (((r >> 15) % 16) == 8) {
                 test.copy();
             }
             if (((r >> 15) % 32) == 18) {
                 test.move();
             }
         }
     }
 }
 
 BOOST_AUTO_TEST_SUITE_END()
diff --git a/src/test/txvalidationcache_tests.cpp b/src/test/txvalidationcache_tests.cpp
index dc3d8054e..72245e014 100644
--- a/src/test/txvalidationcache_tests.cpp
+++ b/src/test/txvalidationcache_tests.cpp
@@ -1,88 +1,88 @@
 // Copyright (c) 2011-2016 The Bitcoin Core developers
 // Distributed under the MIT software license, see the accompanying
 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
 
 #include "config.h"
 #include "consensus/validation.h"
 #include "key.h"
 #include "miner.h"
 #include "pubkey.h"
 #include "random.h"
 #include "script/standard.h"
 #include "test/test_bitcoin.h"
 #include "txmempool.h"
 #include "utiltime.h"
 #include "validation.h"
 
 #include <boost/test/unit_test.hpp>
 
-BOOST_AUTO_TEST_SUITE(tx_validationcache_tests)
+BOOST_AUTO_TEST_SUITE(txvalidationcache_tests)
 
 static bool ToMemPool(CMutableTransaction &tx) {
     LOCK(cs_main);
 
     CValidationState state;
     return AcceptToMemoryPool(GetConfig(), mempool, state,
                               MakeTransactionRef(tx), false, nullptr, nullptr,
                               true, 0);
 }
 
 BOOST_FIXTURE_TEST_CASE(tx_mempool_block_doublespend, TestChain100Setup) {
     // Make sure skipping validation of transctions that were validated going
     // into the memory pool does not allow double-spends in blocks to pass
     // validation when they should not.
 
     CScript scriptPubKey = CScript() << ToByteVector(coinbaseKey.GetPubKey())
                                      << OP_CHECKSIG;
 
     // Create a double-spend of mature coinbase txn:
     std::vector<CMutableTransaction> spends;
     spends.resize(2);
     for (int i = 0; i < 2; i++) {
         spends[i].nVersion = 1;
         spends[i].vin.resize(1);
         spends[i].vin[0].prevout.hash = coinbaseTxns[0].GetId();
         spends[i].vin[0].prevout.n = 0;
         spends[i].vout.resize(1);
         spends[i].vout[0].nValue = 11 * CENT;
         spends[i].vout[0].scriptPubKey = scriptPubKey;
 
         // Sign:
         std::vector<unsigned char> vchSig;
         uint256 hash =
             SignatureHash(scriptPubKey, spends[i], 0, SIGHASH_ALL, 0);
         BOOST_CHECK(coinbaseKey.Sign(hash, vchSig));
         vchSig.push_back((unsigned char)SIGHASH_ALL);
         spends[i].vin[0].scriptSig << vchSig;
     }
 
     CBlock block;
 
     // Test 1: block with both of those transactions should be rejected.
     block = CreateAndProcessBlock(spends, scriptPubKey);
     BOOST_CHECK(chainActive.Tip()->GetBlockHash() != block.GetHash());
 
     // Test 2: ... and should be rejected if spend1 is in the memory pool
     BOOST_CHECK(ToMemPool(spends[0]));
     block = CreateAndProcessBlock(spends, scriptPubKey);
     BOOST_CHECK(chainActive.Tip()->GetBlockHash() != block.GetHash());
     mempool.clear();
 
     // Test 3: ... and should be rejected if spend2 is in the memory pool
     BOOST_CHECK(ToMemPool(spends[1]));
     block = CreateAndProcessBlock(spends, scriptPubKey);
     BOOST_CHECK(chainActive.Tip()->GetBlockHash() != block.GetHash());
     mempool.clear();
 
     // Final sanity test: first spend in mempool, second in block, that's OK:
     std::vector<CMutableTransaction> oneSpend;
     oneSpend.push_back(spends[0]);
     BOOST_CHECK(ToMemPool(spends[1]));
     block = CreateAndProcessBlock(oneSpend, scriptPubKey);
     BOOST_CHECK(chainActive.Tip()->GetBlockHash() == block.GetHash());
     // spends[1] should have been removed from the mempool when the block with
     // spends[0] is accepted:
     BOOST_CHECK_EQUAL(mempool.size(), 0);
 }
 
 BOOST_AUTO_TEST_SUITE_END()