diff base/test/svcore-base-test.cpp @ 1392:667e369cfeab

LogRange tests
author Chris Cannam
date Tue, 28 Feb 2017 11:21:49 +0000
parents e2e66bfd4a88
children 25ed6dde2ce0
line wrap: on
line diff
--- a/base/test/svcore-base-test.cpp	Mon Feb 27 16:52:47 2017 +0000
+++ b/base/test/svcore-base-test.cpp	Tue Feb 28 11:21:49 2017 +0000
@@ -11,6 +11,7 @@
     COPYING included with this distribution for more information.
 */
 
+#include "TestLogRange.h"
 #include "TestRangeMapper.h"
 #include "TestPitch.h"
 #include "TestStringBits.h"
@@ -27,7 +28,7 @@
     int good = 0, bad = 0;
 
     QCoreApplication app(argc, argv);
-    app.setOrganizationName("Sonic Visualiser");
+    app.setOrganizationName("sonic-visualiser");
     app.setApplicationName("test-svcore-base");
 
     {
@@ -60,6 +61,11 @@
 	if (QTest::qExec(&t, argc, argv) == 0) ++good;
 	else ++bad;
     }
+    {
+	TestLogRange t;
+	if (QTest::qExec(&t, argc, argv) == 0) ++good;
+	else ++bad;
+    }
 
     if (bad > 0) {
 	cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl;