vp9_thread_test: add 'Thread' to test names

s/VP9DecodeMTTest/VP9DecodeMultiThreadedTest/

this enables simpler test filtering

Change-Id: I010a451cf32fa5a95db6734cc22f331f0a0d515a
This commit is contained in:
James Zern 2014-06-21 19:16:14 -07:00
parent 14e3caca9a
commit 415b84bee0

View File

@ -130,13 +130,13 @@ string DecodeFile(const string& filename, int num_threads) {
return string(md5.Get());
}
TEST(VP9DecodeMTTest, MTDecode) {
TEST(VP9DecodeMultiThreadedTest, Decode) {
// no tiles or frame parallel; this exercises loop filter threading.
EXPECT_STREQ("b35a1b707b28e82be025d960aba039bc",
DecodeFile("vp90-2-03-size-226x226.webm", 2).c_str());
}
TEST(VP9DecodeMTTest, MTDecode2) {
TEST(VP9DecodeMultiThreadedTest, Decode2) {
static const struct {
const char *name;
const char *expected_md5;
@ -158,7 +158,7 @@ TEST(VP9DecodeMTTest, MTDecode2) {
}
// Test tile quantity changes within one file.
TEST(VP9DecodeMTTest, MTDecode3) {
TEST(VP9DecodeMultiThreadedTest, Decode3) {
static const struct {
const char *name;
const char *expected_md5;