X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fcreate_cli_test.cc;h=97ac25374da8a135e3e6c7f38e46c099f93749f3;hb=6a3c03c5eed3cab8fdfdb04fcbaf6cabe8c715e9;hp=acc3f64b0eb6eb31de56de6c40ff632578b395ea;hpb=f7610c3c202df736c518a826bef21da41df38aa4;p=dcpomatic.git diff --git a/test/create_cli_test.cc b/test/create_cli_test.cc index acc3f64b0..97ac25374 100644 --- a/test/create_cli_test.cc +++ b/test/create_cli_test.cc @@ -37,21 +37,19 @@ run (string cmd) boost::escaped_list_separator els ("", " ", "\"\'"); boost::tokenizer > tok (cmd, els); - char** argv = new char*[256]; + std::vector argv(256); int argc = 0; for (boost::tokenizer >::iterator i = tok.begin(); i != tok.end(); ++i) { argv[argc++] = strdup (i->c_str()); } - CreateCLI cc (argc, argv); + CreateCLI cc (argc, argv.data()); for (int i = 0; i < argc; ++i) { free (argv[i]); } - delete[] argv; - return cc; } @@ -144,6 +142,12 @@ BOOST_AUTO_TEST_CASE (create_cli_test) BOOST_CHECK_EQUAL (cc.content[1].frame_type, VideoFrameType::THREE_D_RIGHT); BOOST_CHECK_EQUAL (cc.fourk, false); + cc = run ("dcpomatic2_create --twok foo.mp4"); + BOOST_REQUIRE_EQUAL (cc.content.size(), 1U); + BOOST_CHECK_EQUAL (cc.content[0].path, "foo.mp4"); + BOOST_CHECK_EQUAL (cc.twok, true); + BOOST_CHECK (!cc.error); + cc = run ("dcpomatic2_create --fourk foo.mp4"); BOOST_REQUIRE_EQUAL (cc.content.size(), 1U); BOOST_CHECK_EQUAL (cc.content[0].path, "foo.mp4");