diff base/test/svcore-base-test.cpp @ 1265:e2e66bfd4a88 3.0-integration

Start tests for ColumnOp (+ some resulting fixes)
author Chris Cannam
date Thu, 17 Nov 2016 11:56:54 +0000
parents c4f873749ab5
children 667e369cfeab
line wrap: on
line diff
--- a/base/test/svcore-base-test.cpp	Wed Nov 16 16:12:42 2016 +0000
+++ b/base/test/svcore-base-test.cpp	Thu Nov 17 11:56:54 2016 +0000
@@ -16,6 +16,7 @@
 #include "TestStringBits.h"
 #include "TestOurRealTime.h"
 #include "TestVampRealTime.h"
+#include "TestColumnOp.h"
 
 #include <QtTest>
 
@@ -54,6 +55,11 @@
 	if (QTest::qExec(&t, argc, argv) == 0) ++good;
 	else ++bad;
     }
+    {
+	TestColumnOp t;
+	if (QTest::qExec(&t, argc, argv) == 0) ++good;
+	else ++bad;
+    }
 
     if (bad > 0) {
 	cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl;