annotate base/test/main.cpp @ 1012:ee9f4477f65b

Start RealTime tests
author Chris Cannam
date Mon, 17 Nov 2014 17:09:32 +0000
parents 451f7f3ab6e7
children eecf544bed92
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@1012 16 #include "TestRealTime.h"
Chris@879 17
Chris@879 18 #include <QtTest>
Chris@879 19
Chris@879 20 #include <iostream>
Chris@879 21
Chris@879 22 int main(int argc, char *argv[])
Chris@879 23 {
Chris@879 24 int good = 0, bad = 0;
Chris@879 25
Chris@879 26 QCoreApplication app(argc, argv);
Chris@879 27 app.setOrganizationName("Sonic Visualiser");
Chris@879 28 app.setApplicationName("test-svcore-base");
Chris@879 29
Chris@879 30 {
Chris@883 31 TestRangeMapper t;
Chris@879 32 if (QTest::qExec(&t, argc, argv) == 0) ++good;
Chris@879 33 else ++bad;
Chris@879 34 }
Chris@892 35 {
Chris@892 36 TestPitch t;
Chris@892 37 if (QTest::qExec(&t, argc, argv) == 0) ++good;
Chris@892 38 else ++bad;
Chris@892 39 }
Chris@1012 40 {
Chris@1012 41 TestRealTime t;
Chris@1012 42 if (QTest::qExec(&t, argc, argv) == 0) ++good;
Chris@1012 43 else ++bad;
Chris@1012 44 }
Chris@879 45
Chris@879 46 if (bad > 0) {
Chris@879 47 cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl;
Chris@879 48 return 1;
Chris@879 49 } else {
Chris@879 50 cerr << "All tests passed" << endl;
Chris@879 51 return 0;
Chris@879 52 }
Chris@879 53 }