Browse Source

Return !0 when qt tests fail.

try
Matt Corallo 12 years ago
committed by Matt Corallo
parent
commit
026594e269
  1. 7
      src/qt/test/test_main.cpp

7
src/qt/test/test_main.cpp

@ -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…
Cancel
Save