diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-07-29 02:26:33 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-07-29 02:26:34 +0200 |
| commit | 430825272e1a6cf266a184afe5acc0fa9811fff8 (patch) | |
| tree | e2bdf7d8b441ae5818264c6b53675c40fba2055f /test/repeat_frame_test.cc | |
| parent | 67f39ff3eebb5ac727324b12130ff9cc262e9ffa (diff) | |
Don't check sound assets in some tests.
When fiddling with MXF channel counts it makes a lot of tests fail
that probably don't need to.
Diffstat (limited to 'test/repeat_frame_test.cc')
| -rw-r--r-- | test/repeat_frame_test.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/repeat_frame_test.cc b/test/repeat_frame_test.cc index afdaf48a6..0d0f38616 100644 --- a/test/repeat_frame_test.cc +++ b/test/repeat_frame_test.cc @@ -50,6 +50,8 @@ BOOST_AUTO_TEST_CASE (repeat_frame_test) film->set_video_frame_rate (48); make_and_verify_dcp (film); - /* Should be 32 frames of red followed by 16 frames of black to fill the DCP up to 1 second */ - check_dcp ("test/data/repeat_frame_test", film->dir (film->dcp_name ())); + /* Should be 32 frames of red followed by 16 frames of black to fill the DCP up to 1 second; + * no need to check sound. + */ + check_dcp("test/data/repeat_frame_test", film->dir(film->dcp_name()), true); } |
