Merge #21531: test: remove qt byteswap compattests
pull/826/head9ac86bcc0d
test: remove qt byteswap compattests (fanquake) Pull request description: These were added as part of #9366 when with fixing issues with Protobuf. Now that we no-longer use Protobuf, there's no reason to maintain a duplicate set of byteswap tests in the qt tests. Our other set of byteswap tests are here: https://github.com/bitcoin/bitcoin/blob/master/src/test/bswap_tests.cpp. ACKs for top commit: laanwj: Code review ACK9ac86bcc0d
Tree-SHA512: 72ba131a5f8fbd9fdbbc4e1f95baa794496c960b12e0271700c632c6511b7e1b331e8db07a201838b4d56b2aeeb43d4de4e10265ea07ab14241307fa14d3342e
commit
cf11f9c22f
@ -1,25 +0,0 @@
|
||||
// Copyright (c) 2016-2019 The Bitcoin Core developers
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#if defined(HAVE_CONFIG_H)
|
||||
#include <config/bitcoin-config.h>
|
||||
#endif
|
||||
|
||||
#include <qt/test/compattests.h>
|
||||
|
||||
#include <compat/byteswap.h>
|
||||
|
||||
void CompatTests::bswapTests()
|
||||
{
|
||||
// Sibling in bitcoin/src/test/bswap_tests.cpp
|
||||
uint16_t u1 = 0x1234;
|
||||
uint32_t u2 = 0x56789abc;
|
||||
uint64_t u3 = 0xdef0123456789abc;
|
||||
uint16_t e1 = 0x3412;
|
||||
uint32_t e2 = 0xbc9a7856;
|
||||
uint64_t e3 = 0xbc9a78563412f0de;
|
||||
QVERIFY(bswap_16(u1) == e1);
|
||||
QVERIFY(bswap_32(u2) == e2);
|
||||
QVERIFY(bswap_64(u3) == e3);
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
// Copyright (c) 2009-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.
|
||||
|
||||
#ifndef BITCOIN_QT_TEST_COMPATTESTS_H
|
||||
#define BITCOIN_QT_TEST_COMPATTESTS_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QTest>
|
||||
|
||||
class CompatTests : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
private Q_SLOTS:
|
||||
void bswapTests();
|
||||
};
|
||||
|
||||
#endif // BITCOIN_QT_TEST_COMPATTESTS_H
|
Loading…
Reference in new issue