diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-07-11 21:11:48 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-07-11 21:11:48 +0200 |
| commit | d4f3f5b44d5d42eaadc6fa3807648b6735d61758 (patch) | |
| tree | 80dc1bd02b4eb1b57d70bbd6a624dd879d2be766 /test/dcp_test.cc | |
| parent | 7e99a348e6741287d839cdeb2612637504ed3576 (diff) | |
Hopefully make all tests stable enough to be run with --random,
stopping test reference churn.
Diffstat (limited to 'test/dcp_test.cc')
| -rw-r--r-- | test/dcp_test.cc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test/dcp_test.cc b/test/dcp_test.cc index 87879af7..54ecab00 100644 --- a/test/dcp_test.cc +++ b/test/dcp_test.cc @@ -57,8 +57,6 @@ using boost::shared_ptr; static shared_ptr<dcp::DCP> make_simple (boost::filesystem::path path) { - Kumu::cth_test = true; - /* Some known metadata */ dcp::XMLMetadata xml_meta; xml_meta.annotation_text = "A Test DCP"; @@ -123,6 +121,8 @@ make_simple (boost::filesystem::path path) /** Test creation of a 2D SMPTE DCP from very simple inputs */ BOOST_AUTO_TEST_CASE (dcp_test1) { + RNGFixer fixer; + dcp::XMLMetadata xml_meta; xml_meta.annotation_text = "Created by libdcp"; xml_meta.issuer = "OpenDCP 0.0.25"; @@ -135,7 +135,7 @@ BOOST_AUTO_TEST_CASE (dcp_test1) /** Test creation of a 3D DCP from very simple inputs */ BOOST_AUTO_TEST_CASE (dcp_test2) { - Kumu::cth_test = true; + RNGFixer fix; /* Some known metadata */ dcp::XMLMetadata xml_meta; @@ -236,7 +236,7 @@ BOOST_AUTO_TEST_CASE (dcp_test4) /** Test creation of a 2D DCP with an Atmos track */ BOOST_AUTO_TEST_CASE (dcp_test5) { - Kumu::cth_test = true; + RNGFixer fix; /* Some known metadata */ dcp::XMLMetadata xml_meta; @@ -325,6 +325,8 @@ BOOST_AUTO_TEST_CASE (dcp_test6) /** Test creation of a 2D Interop DCP from very simple inputs */ BOOST_AUTO_TEST_CASE (dcp_test7) { + RNGFixer fix; + dcp::XMLMetadata xml_meta; xml_meta.annotation_text = "Created by libdcp"; xml_meta.issuer = "OpenDCP 0.0.25"; |
