Move test into its own method.
authorCarl Hetherington <cth@carlh.net>
Tue, 30 May 2023 12:31:24 +0000 (14:31 +0200)
committerCarl Hetherington <cth@carlh.net>
Tue, 30 May 2023 12:31:24 +0000 (14:31 +0200)
test/map_cli_test.cc

index ffe281de570ff519c342925fc237b9c28dd538bf..4b212ea39a846fa02c7cc0140171d616d036d324 100644 (file)
@@ -209,8 +209,9 @@ BOOST_AUTO_TEST_CASE(map_simple_interop_dcp_with_subs)
 }
 
 
-/** Map an OV and a VF into a single DCP */
-BOOST_AUTO_TEST_CASE(map_ov_vf_copy)
+static
+void
+test_map_ov_vf_copy()
 {
        string const name = "map_ov_vf_copy";
        string const out = String::compose("build/test/%1_out", name);
@@ -251,6 +252,12 @@ BOOST_AUTO_TEST_CASE(map_ov_vf_copy)
 }
 
 
+/** Map an OV and a VF into a single DCP */
+BOOST_AUTO_TEST_CASE(map_ov_vf_copy)
+{
+       test_map_ov_vf_copy();
+}
+
 /** Map a single DCP into a new DCP using the rename option */
 BOOST_AUTO_TEST_CASE(map_simple_dcp_copy_with_rename)
 {