summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test.cc b/test/test.cc
index 081a13a8c..ecb4a8af7 100644
--- a/test/test.cc
+++ b/test/test.cc
@@ -444,8 +444,8 @@ check_ffmpeg_stream (boost::filesystem::path ref, boost::filesystem::path check,
void
check_ffmpeg (boost::filesystem::path ref, boost::filesystem::path check)
{
- check_ffmpeg_stream (ref, check, "v");
- check_ffmpeg_stream (ref, check, "a");
+ int const r = system (string("ffcmp " + ref.string() + " " + check.string()).c_str());
+ BOOST_REQUIRE_EQUAL (WEXITSTATUS(r), 0);
}
void