Mercurial > hg > svcore
diff base/test/main.cpp @ 1027:ce1077bd663a cxx11
Merge from default branch
author | Chris Cannam |
---|---|
date | Mon, 09 Feb 2015 10:31:07 +0000 |
parents | eecf544bed92 |
children |
line wrap: on
line diff
--- a/base/test/main.cpp Mon Nov 17 15:31:07 2014 +0000 +++ b/base/test/main.cpp Mon Feb 09 10:31:07 2015 +0000 @@ -13,6 +13,8 @@ #include "TestRangeMapper.h" #include "TestPitch.h" +#include "TestRealTime.h" +#include "TestStringBits.h" #include <QtTest> @@ -36,6 +38,16 @@ if (QTest::qExec(&t, argc, argv) == 0) ++good; else ++bad; } + { + TestRealTime t; + if (QTest::qExec(&t, argc, argv) == 0) ++good; + else ++bad; + } + { + TestStringBits t; + if (QTest::qExec(&t, argc, argv) == 0) ++good; + else ++bad; + } if (bad > 0) { cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl;