Mercurial > hg > svcore
diff data/fileio/test/svcore-data-fileio-test.cpp @ 1453:4b496a258782
Merge from branch streaming-csv-writer
author | Chris Cannam |
---|---|
date | Tue, 17 Apr 2018 10:52:06 +0100 |
parents | a12fd0456f0c |
children | 4700b7188f6c |
line wrap: on
line diff
--- a/data/fileio/test/svcore-data-fileio-test.cpp Thu Mar 01 18:02:22 2018 +0000 +++ b/data/fileio/test/svcore-data-fileio-test.cpp Tue Apr 17 10:52:06 2018 +0100 @@ -16,6 +16,7 @@ #include "AudioFileWriterTest.h" #include "EncodingTest.h" #include "MIDIFileReaderTest.h" +#include "CSVStreamWriterTest.h" #include <QtTest> @@ -70,6 +71,12 @@ else ++bad; } + { + CSVStreamWriterTest t; + if (QTest::qExec(&t, argc, argv) == 0) ++good; + else ++bad; + } + if (bad > 0) { SVCERR << "\n********* " << bad << " test suite(s) failed!\n" << endl; return 1; @@ -78,4 +85,3 @@ return 0; } } -