Mercurial > hg > svcore
diff base/test/main.cpp @ 894:1341cc1390be tony_integration
Merge from default branch
author | Chris Cannam |
---|---|
date | Mon, 31 Mar 2014 13:00:17 +0100 |
parents | 451f7f3ab6e7 |
children | ee9f4477f65b |
line wrap: on
line diff
--- a/base/test/main.cpp Tue Mar 11 17:32:31 2014 +0000 +++ b/base/test/main.cpp Mon Mar 31 13:00:17 2014 +0100 @@ -12,6 +12,7 @@ */ #include "TestRangeMapper.h" +#include "TestPitch.h" #include <QtTest> @@ -30,6 +31,11 @@ if (QTest::qExec(&t, argc, argv) == 0) ++good; else ++bad; } + { + TestPitch t; + if (QTest::qExec(&t, argc, argv) == 0) ++good; + else ++bad; + } if (bad > 0) { cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl;