]> granicus.if.org Git - libvpx/commitdiff
vp9_thread_test: add 'Thread' to test names
authorJames Zern <jzern@google.com>
Sun, 22 Jun 2014 02:16:14 +0000 (19:16 -0700)
committerJames Zern <jzern@google.com>
Tue, 1 Jul 2014 06:38:21 +0000 (23:38 -0700)
s/VP9DecodeMTTest/VP9DecodeMultiThreadedTest/

this enables simpler test filtering

Change-Id: I010a451cf32fa5a95db6734cc22f331f0a0d515a

test/vp9_thread_test.cc

index 0c9f71bc5972e46d9c8a21711d2f6c6867c4d468..68ee99a4fd67e487190e19b33f45583404595731 100644 (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;