diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-03 12:09:11 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-21 21:57:18 +0200 |
| commit | dbc99439fb29d9c7aec3941b7d7cda92910a36fe (patch) | |
| tree | 2eb911605d819e0132c2c603be6848ab26580b5e /test/sound_frame_test.cc | |
| parent | 15682e0e208cf9b6286d71ad0efd78fe7118332f (diff) | |
Remove stdout noise from tests.
Diffstat (limited to 'test/sound_frame_test.cc')
| -rw-r--r-- | test/sound_frame_test.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/sound_frame_test.cc b/test/sound_frame_test.cc index d0840d8c..d5491a78 100644 --- a/test/sound_frame_test.cc +++ b/test/sound_frame_test.cc @@ -78,7 +78,10 @@ BOOST_AUTO_TEST_CASE (sound_frame_test) BOOST_AUTO_TEST_CASE (sound_frame_test2) { - BOOST_CHECK_THROW (dcp::SoundAsset("frobozz"), dcp::FileError); + { + dcp::ASDCPErrorSuspender sus; + BOOST_CHECK_THROW (dcp::SoundAsset("frobozz"), dcp::FileError); + } dcp::SoundAsset asset ( private_test / |
