diff options
| author | Karl-Johan Alm <[email protected]> | 2016-12-16 16:52:35 +0900 |
|---|---|---|
| committer | Kalle Alm <[email protected]> | 2016-12-17 12:27:00 +0900 |
| commit | 815f4148b2eff6c64c764e910e79677d5a67adc7 (patch) | |
| tree | 1b9e3e892ca7e6ec21b607a96b4c7ca97da1d3dd /src/qt/test/test_main.cpp | |
| parent | Merge #9322: [qa] Don't set unknown rpcserialversion (diff) | |
| download | discoin-815f4148b2eff6c64c764e910e79677d5a67adc7.tar.xz discoin-815f4148b2eff6c64c764e910e79677d5a67adc7.zip | |
Uses built-in byte swap if available (Apple) and if bswap_XX is undefined.
Defers to pre-defined version if found (e.g. protobuf). For protobuf case, the definitions are identical and thus include order should not affect results.
Diffstat (limited to 'src/qt/test/test_main.cpp')
| -rw-r--r-- | src/qt/test/test_main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/test/test_main.cpp b/src/qt/test/test_main.cpp index dbaab54fb..d44d71131 100644 --- a/src/qt/test/test_main.cpp +++ b/src/qt/test/test_main.cpp @@ -11,6 +11,7 @@ #include "rpcnestedtests.h" #include "util.h" #include "uritests.h" +#include "compattests.h" #ifdef ENABLE_WALLET #include "paymentservertests.h" @@ -61,6 +62,9 @@ int main(int argc, char *argv[]) RPCNestedTests test3; if (QTest::qExec(&test3) != 0) fInvalid = true; + CompatTests test4; + if (QTest::qExec(&test4) != 0) + fInvalid = true; ECC_Stop(); return fInvalid; |