Commit a0465501 authored by James Zern's avatar James Zern Committed by Gerrit Code Review
Browse files

Merge "invalid_file_test: add an operator<< for DecodeParam"

Showing with 4 additions and 0 deletions
......@@ -30,6 +30,10 @@ struct DecodeParam {
const char *filename;
};
std::ostream &operator<<(std::ostream &os, const DecodeParam &dp) {
return os << "threads: " << dp.threads << " file: " << dp.filename;
}
class InvalidFileTest
: public ::libvpx_test::DecoderTest,
public ::libvpx_test::CodecTestWithParam<DecodeParam> {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment