Fix required test.
authorCarl Hetherington <cth@carlh.net>
Fri, 28 Jul 2017 15:24:09 +0000 (16:24 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 28 Jul 2017 15:24:09 +0000 (16:24 +0100)
test/client_server_test.cc

index 1b40174838b758c2b11e1ecb521e845d3772e0a8..744254fdb14f327204216fcbead025ab738c3bec 100644 (file)
@@ -51,7 +51,7 @@ do_remote_encode (shared_ptr<DCPVideo> frame, EncodeServerDescription descriptio
        Data remotely_encoded;
        BOOST_CHECK_NO_THROW (remotely_encoded = frame->encode_remotely (description, 60));
 
-       BOOST_CHECK_EQUAL (locally_encoded.size(), remotely_encoded.size());
+       BOOST_REQUIRE_EQUAL (locally_encoded.size(), remotely_encoded.size());
        BOOST_CHECK_EQUAL (memcmp (locally_encoded.data().get(), remotely_encoded.data().get(), locally_encoded.size()), 0);
 }