mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-17 02:49:19 +00:00
Return !0 when qt tests fail.
This commit is contained in:
parent
06f4e33677
commit
4e56a62f72
@ -6,6 +6,11 @@
|
||||
// This is all you need to run all the tests
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
bool fInvalid = false;
|
||||
|
||||
URITests test1;
|
||||
QTest::qExec(&test1);
|
||||
if (QTest::qExec(&test1) != 0)
|
||||
fInvalid = true;
|
||||
|
||||
return fInvalid;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user