summaryrefslogtreecommitdiff
path: root/test/map_cli_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-05-30 14:31:24 +0200
committerCarl Hetherington <cth@carlh.net>2023-05-30 14:31:24 +0200
commit05520f722348f30b19ab1d950f2d58016e02de55 (patch)
tree703e6ff647614863afe08d67c165fd50839f982d /test/map_cli_test.cc
parent3ef1d207f33502fa5e114924f0f9abeeda97900a (diff)
Move test into its own method.
Diffstat (limited to 'test/map_cli_test.cc')
-rw-r--r--test/map_cli_test.cc11
1 files changed, 9 insertions, 2 deletions
diff --git a/test/map_cli_test.cc b/test/map_cli_test.cc
index ffe281de5..4b212ea39 100644
--- a/test/map_cli_test.cc
+++ b/test/map_cli_test.cc
@@ -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)
{