annotate base/test/main.cpp @ 1008:d9e0e59a1581

When using an aggregate model to pass data to a transform, zero-pad the shorter input to the duration of the longer rather than truncating the longer. (This is better behaviour for e.g. MATCH, and in any case the code was previously truncating incorrectly and ending up with garbage data at the end.)
author Chris Cannam
date Fri, 14 Nov 2014 13:51:33 +0000
parents 451f7f3ab6e7
children ee9f4477f65b
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@879 16
Chris@879 17 #include <QtTest>
Chris@879 18
Chris@879 19 #include <iostream>
Chris@879 20
Chris@879 21 int main(int argc, char *argv[])
Chris@879 22 {
Chris@879 23 int good = 0, bad = 0;
Chris@879 24
Chris@879 25 QCoreApplication app(argc, argv);
Chris@879 26 app.setOrganizationName("Sonic Visualiser");
Chris@879 27 app.setApplicationName("test-svcore-base");
Chris@879 28
Chris@879 29 {
Chris@883 30 TestRangeMapper t;
Chris@879 31 if (QTest::qExec(&t, argc, argv) == 0) ++good;
Chris@879 32 else ++bad;
Chris@879 33 }
Chris@892 34 {
Chris@892 35 TestPitch t;
Chris@892 36 if (QTest::qExec(&t, argc, argv) == 0) ++good;
Chris@892 37 else ++bad;
Chris@892 38 }
Chris@879 39
Chris@879 40 if (bad > 0) {
Chris@879 41 cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl;
Chris@879 42 return 1;
Chris@879 43 } else {
Chris@879 44 cerr << "All tests passed" << endl;
Chris@879 45 return 0;
Chris@879 46 }
Chris@879 47 }