annotate 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
rev   line source
Chris@879 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@879 2 /*
Chris@879 3 Sonic Visualiser
Chris@879 4 An audio file viewer and annotation editor.
Chris@879 5 Centre for Digital Music, Queen Mary, University of London.
Chris@879 6
Chris@879 7 This program is free software; you can redistribute it and/or
Chris@879 8 modify it under the terms of the GNU General Public License as
Chris@879 9 published by the Free Software Foundation; either version 2 of the
Chris@879 10 License, or (at your option) any later version. See the file
Chris@879 11 COPYING included with this distribution for more information.
Chris@879 12 */
Chris@879 13
Chris@883 14 #include "TestRangeMapper.h"
Chris@892 15 #include "TestPitch.h"
Chris@1022 16 #include "TestStringBits.h"
Chris@1262 17 #include "TestOurRealTime.h"
Chris@1262 18 #include "TestVampRealTime.h"
Chris@879 19
Chris@879 20 #include <QtTest>
Chris@879 21
Chris@879 22 #include <iostream>
Chris@879 23
Chris@879 24 int main(int argc, char *argv[])
Chris@879 25 {
Chris@879 26 int good = 0, bad = 0;
Chris@879 27
Chris@879 28 QCoreApplication app(argc, argv);
Chris@879 29 app.setOrganizationName("Sonic Visualiser");
Chris@879 30 app.setApplicationName("test-svcore-base");
Chris@879 31
Chris@879 32 {
Chris@883 33 TestRangeMapper t;
Chris@879 34 if (QTest::qExec(&t, argc, argv) == 0) ++good;
Chris@879 35 else ++bad;
Chris@879 36 }
Chris@892 37 {
Chris@892 38 TestPitch t;
Chris@892 39 if (QTest::qExec(&t, argc, argv) == 0) ++good;
Chris@892 40 else ++bad;
Chris@892 41 }
Chris@1012 42 {
Chris@1262 43 TestOurRealTime t;
Chris@1262 44 if (QTest::qExec(&t, argc, argv) == 0) ++good;
Chris@1262 45 else ++bad;
Chris@1262 46 }
Chris@1262 47 {
Chris@1262 48 TestVampRealTime t;
Chris@1012 49 if (QTest::qExec(&t, argc, argv) == 0) ++good;
Chris@1012 50 else ++bad;
Chris@1012 51 }
Chris@1022 52 {
Chris@1022 53 TestStringBits t;
Chris@1022 54 if (QTest::qExec(&t, argc, argv) == 0) ++good;
Chris@1022 55 else ++bad;
Chris@1022 56 }
Chris@879 57
Chris@879 58 if (bad > 0) {
Chris@879 59 cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl;
Chris@879 60 return 1;
Chris@879 61 } else {
Chris@879 62 cerr << "All tests passed" << endl;
Chris@879 63 return 0;
Chris@879 64 }
Chris@879 65 }