We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc9503c commit b61b34cCopy full SHA for b61b34c
src/qt/test/test_main.cpp
@@ -50,19 +50,23 @@ int main(int argc, char *argv[])
50
SSL_library_init();
51
52
URITests test1;
53
- if (QTest::qExec(&test1) != 0)
+ if (QTest::qExec(&test1) != 0) {
54
fInvalid = true;
55
+ }
56
#ifdef ENABLE_WALLET
57
PaymentServerTests test2;
- if (QTest::qExec(&test2) != 0)
58
+ if (QTest::qExec(&test2) != 0) {
59
60
61
#endif
62
RPCNestedTests test3;
- if (QTest::qExec(&test3) != 0)
63
+ if (QTest::qExec(&test3) != 0) {
64
65
66
CompatTests test4;
- if (QTest::qExec(&test4) != 0)
67
+ if (QTest::qExec(&test4) != 0) {
68
69
70
71
return fInvalid;
72
}
0 commit comments