mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 10:43:19 -03:00
Merge bitcoin-core/gui#576: Add qt unit test runner summary
d025d7f025
gui, refactor: rename fInvalid to num_test_failures in test_main.cpp (Jon Atack)2489b6fe9c
gui: count test failures in test runner summary (Jon Atack)ba44aae768
gui: add test runner summary (Jon Atack) Pull request description: Append a one-line summary to the output of running `./src/qt/test/test_bitcoin-qt` indicating that all tests passed or showing the number of failing tests. It's currently a bit inconvenient to see this result by eyeballing all of the output. ACKs for top commit: shaavan: ACKd025d7f025
jarolrod: tACKd025d7f025
Tree-SHA512: 981c5daa13db127d38167bcf78b296b1a7e5b2d12e65f364ec6382b24f1008a223521d3b6c56e920bcd037479da5414e43758794688019d09e9aa696f3964746
This commit is contained in:
commit
f509760026
1 changed files with 21 additions and 21 deletions
|
@ -21,8 +21,10 @@
|
|||
#endif // ENABLE_WALLET
|
||||
|
||||
#include <QApplication>
|
||||
#include <QDebug>
|
||||
#include <QObject>
|
||||
#include <QTest>
|
||||
|
||||
#include <functional>
|
||||
|
||||
#if defined(QT_STATICPLUGIN)
|
||||
|
@ -69,8 +71,6 @@ int main(int argc, char* argv[])
|
|||
gArgs.ForceSetArg("-upnp", "0");
|
||||
gArgs.ForceSetArg("-natpmp", "0");
|
||||
|
||||
bool fInvalid = false;
|
||||
|
||||
// Prefer the "minimal" platform for the test instead of the normal default
|
||||
// platform ("xcb", "windows", or "cocoa") so tests can't unintentionally
|
||||
// interfere with any background GUIs and don't require extra resources.
|
||||
|
@ -86,32 +86,32 @@ int main(int argc, char* argv[])
|
|||
app.setApplicationName("Bitcoin-Qt-test");
|
||||
app.createNode(*init);
|
||||
|
||||
int num_test_failures{0};
|
||||
|
||||
AppTests app_tests(app);
|
||||
if (QTest::qExec(&app_tests) != 0) {
|
||||
fInvalid = true;
|
||||
}
|
||||
num_test_failures += QTest::qExec(&app_tests);
|
||||
|
||||
OptionTests options_tests(app.node());
|
||||
if (QTest::qExec(&options_tests) != 0) {
|
||||
fInvalid = true;
|
||||
}
|
||||
num_test_failures += QTest::qExec(&options_tests);
|
||||
|
||||
URITests test1;
|
||||
if (QTest::qExec(&test1) != 0) {
|
||||
fInvalid = true;
|
||||
}
|
||||
num_test_failures += QTest::qExec(&test1);
|
||||
|
||||
RPCNestedTests test3(app.node());
|
||||
if (QTest::qExec(&test3) != 0) {
|
||||
fInvalid = true;
|
||||
}
|
||||
num_test_failures += QTest::qExec(&test3);
|
||||
|
||||
#ifdef ENABLE_WALLET
|
||||
WalletTests test5(app.node());
|
||||
if (QTest::qExec(&test5) != 0) {
|
||||
fInvalid = true;
|
||||
}
|
||||
num_test_failures += QTest::qExec(&test5);
|
||||
|
||||
AddressBookTests test6(app.node());
|
||||
if (QTest::qExec(&test6) != 0) {
|
||||
fInvalid = true;
|
||||
}
|
||||
num_test_failures += QTest::qExec(&test6);
|
||||
#endif
|
||||
|
||||
return fInvalid;
|
||||
if (num_test_failures) {
|
||||
qWarning("\nFailed tests: %d\n", num_test_failures);
|
||||
} else {
|
||||
qDebug("\nAll tests passed.\n");
|
||||
}
|
||||
return num_test_failures;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue