Mercurial > hg > svcore
diff base/test/main.cpp @ 1012:ee9f4477f65b
Start RealTime tests
author | Chris Cannam |
---|---|
date | Mon, 17 Nov 2014 17:09:32 +0000 |
parents | 451f7f3ab6e7 |
children | eecf544bed92 |
line wrap: on
line diff
--- a/base/test/main.cpp Fri Oct 03 15:27:02 2014 +0100 +++ b/base/test/main.cpp Mon Nov 17 17:09:32 2014 +0000 @@ -13,6 +13,7 @@ #include "TestRangeMapper.h" #include "TestPitch.h" +#include "TestRealTime.h" #include <QtTest> @@ -36,6 +37,11 @@ if (QTest::qExec(&t, argc, argv) == 0) ++good; else ++bad; } + { + TestRealTime t; + if (QTest::qExec(&t, argc, argv) == 0) ++good; + else ++bad; + } if (bad > 0) { cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl;