diff 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
line wrap: on
line diff
--- a/base/test/svcore-base-test.cpp	Mon Nov 14 17:54:22 2016 +0000
+++ b/base/test/svcore-base-test.cpp	Tue Nov 15 16:12:48 2016 +0000
@@ -13,8 +13,9 @@
 
 #include "TestRangeMapper.h"
 #include "TestPitch.h"
-#include "TestRealTime.h"
 #include "TestStringBits.h"
+#include "TestOurRealTime.h"
+#include "TestVampRealTime.h"
 
 #include <QtTest>
 
@@ -39,7 +40,12 @@
 	else ++bad;
     }
     {
-	TestRealTime t;
+        TestOurRealTime t;
+	if (QTest::qExec(&t, argc, argv) == 0) ++good;
+	else ++bad;
+    }
+    {
+        TestVampRealTime t;
 	if (QTest::qExec(&t, argc, argv) == 0) ++good;
 	else ++bad;
     }