CodingPathSync test: re-enable picture comparison
Change-Id: Ib5e5346fb4231551739edefdf5ff09628ca71221
diff --git a/test/coding_path_sync.cc b/test/coding_path_sync.cc
index d1c4363..5b6409d 100644
--- a/test/coding_path_sync.cc
+++ b/test/coding_path_sync.cc
@@ -151,13 +151,7 @@
std::vector<int16_t> lbd_yuv = dec_lbd.decode(frame);
std::vector<int16_t> hbd_yuv = dec_hbd.decode(frame);
- // TODO(aomedia:39): re-enable the comparison when both coding paths match,
- // so they don't diverge anymore.
- // Until then, keep doing the decoding to prevent crashes from creeping in,
- // making this test harder to re-enable.
- if (0) {
- ASSERT_EQ(lbd_yuv, hbd_yuv);
- }
+ ASSERT_EQ(lbd_yuv, hbd_yuv);
}
}