Improve test output.
authorCarl Hetherington <cth@carlh.net>
Tue, 8 Mar 2022 22:21:37 +0000 (23:21 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 8 Mar 2022 22:21:37 +0000 (23:21 +0100)
test/audio_mapping_test.cc

index 1e56df38777460703eae238ff6e478f91db43ecf..e7e2838372447d085635affc80adcdaa7325a838 100644 (file)
@@ -71,7 +71,7 @@ guess_check (boost::filesystem::path filename, int output_channel)
        AudioMapping m (1, 8);
        m.make_default (0, filename);
        for (int i = 0; i < 8; ++i) {
-               BOOST_TEST_INFO (filename);
+               BOOST_TEST_INFO (String::compose("%1 channel %2", filename, i));
                BOOST_CHECK_CLOSE (m.get(0, i), i == output_channel ? 1 : 0, 0.01);
        }
 }