comparison base/test/svcore-base-test.cpp @ 1262:c4f873749ab5 3.0-integration

RealTime fixes to comply with new, more demanding tests; also run same (failing) tests on Vamp SDK version
author Chris Cannam
date Tue, 15 Nov 2016 16:12:48 +0000
parents 24c0d4c5356e
children e2e66bfd4a88
comparison
equal deleted inserted replaced
1261:968d54d893d2 1262:c4f873749ab5
11 COPYING included with this distribution for more information. 11 COPYING included with this distribution for more information.
12 */ 12 */
13 13
14 #include "TestRangeMapper.h" 14 #include "TestRangeMapper.h"
15 #include "TestPitch.h" 15 #include "TestPitch.h"
16 #include "TestRealTime.h"
17 #include "TestStringBits.h" 16 #include "TestStringBits.h"
17 #include "TestOurRealTime.h"
18 #include "TestVampRealTime.h"
18 19
19 #include <QtTest> 20 #include <QtTest>
20 21
21 #include <iostream> 22 #include <iostream>
22 23
37 TestPitch t; 38 TestPitch t;
38 if (QTest::qExec(&t, argc, argv) == 0) ++good; 39 if (QTest::qExec(&t, argc, argv) == 0) ++good;
39 else ++bad; 40 else ++bad;
40 } 41 }
41 { 42 {
42 TestRealTime t; 43 TestOurRealTime t;
44 if (QTest::qExec(&t, argc, argv) == 0) ++good;
45 else ++bad;
46 }
47 {
48 TestVampRealTime t;
43 if (QTest::qExec(&t, argc, argv) == 0) ++good; 49 if (QTest::qExec(&t, argc, argv) == 0) ++good;
44 else ++bad; 50 else ++bad;
45 } 51 }
46 { 52 {
47 TestStringBits t; 53 TestStringBits t;