annotate data/fileio/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 eb6b6a88faed
children
rev   line source
Chris@756 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 This file copyright 2013 Chris Cannam.
Chris@879 7
Chris@879 8 This program is free software; you can redistribute it and/or
Chris@879 9 modify it under the terms of the GNU General Public License as
Chris@879 10 published by the Free Software Foundation; either version 2 of the
Chris@879 11 License, or (at your option) any later version. See the file
Chris@879 12 COPYING included with this distribution for more information.
Chris@879 13 */
Chris@756 14
Chris@756 15 #include "AudioFileReaderTest.h"
Chris@756 16
Chris@756 17 #include <QtTest>
Chris@756 18
Chris@756 19 #include <iostream>
Chris@756 20
Chris@756 21 int main(int argc, char *argv[])
Chris@756 22 {
Chris@756 23 int good = 0, bad = 0;
Chris@756 24
Chris@756 25 QCoreApplication app(argc, argv);
Chris@756 26 app.setOrganizationName("Sonic Visualiser");
Chris@756 27 app.setApplicationName("test-fileio");
Chris@756 28
Chris@756 29 {
Chris@756 30 AudioFileReaderTest t;
Chris@756 31 if (QTest::qExec(&t, argc, argv) == 0) ++good;
Chris@756 32 else ++bad;
Chris@756 33 }
Chris@756 34
Chris@756 35 if (bad > 0) {
Chris@843 36 cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl;
Chris@756 37 return 1;
Chris@756 38 } else {
Chris@843 39 cerr << "All tests passed" << endl;
Chris@756 40 return 0;
Chris@756 41 }
Chris@756 42 }
Chris@756 43