aboutsummaryrefslogtreecommitdiff
path: root/src/qt/test/test_main.cpp
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-03-26 11:05:20 +0800
committerfanquake <fanquake@gmail.com>2021-03-29 11:12:26 +0800
commit9ac86bcc0d72cdcecdbf8884a557095bbc3cdc11 (patch)
tree73ac73651c4921af29a57b468cff42bc92802a1b /src/qt/test/test_main.cpp
parentde4d3ba43705ea313f92f17295005c371a8d0bd0 (diff)
downloadbitcoin-9ac86bcc0d72cdcecdbf8884a557095bbc3cdc11.tar.xz
test: remove qt byteswap compattests
These were added as part of #9366 to fix issues with Protobuf. Now that we no-longer use Protobuf, there's no reason to maintain a duplicate set of byteswap tests for qt.
Diffstat (limited to 'src/qt/test/test_main.cpp')
-rw-r--r--src/qt/test/test_main.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/qt/test/test_main.cpp b/src/qt/test/test_main.cpp
index a1baf6a402..eb86f027ef 100644
--- a/src/qt/test/test_main.cpp
+++ b/src/qt/test/test_main.cpp
@@ -11,7 +11,6 @@
#include <qt/test/apptests.h>
#include <qt/test/rpcnestedtests.h>
#include <qt/test/uritests.h>
-#include <qt/test/compattests.h>
#include <test/util/setup_common.h>
#ifdef ENABLE_WALLET
@@ -92,10 +91,6 @@ int main(int argc, char* argv[])
if (QTest::qExec(&test3) != 0) {
fInvalid = true;
}
- CompatTests test4;
- if (QTest::qExec(&test4) != 0) {
- fInvalid = true;
- }
#ifdef ENABLE_WALLET
WalletTests test5(app.node());
if (QTest::qExec(&test5) != 0) {