diff options
Diffstat (limited to 'runtime/arch/instruction_set_test.cc')
-rw-r--r-- | runtime/arch/instruction_set_test.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/arch/instruction_set_test.cc b/runtime/arch/instruction_set_test.cc index 932ef323fc..2f3cf18a1f 100644 --- a/runtime/arch/instruction_set_test.cc +++ b/runtime/arch/instruction_set_test.cc @@ -28,6 +28,7 @@ TEST(InstructionSetTest, GetInstructionSetFromString) { EXPECT_EQ(kX86, GetInstructionSetFromString("x86")); EXPECT_EQ(kX86_64, GetInstructionSetFromString("x86_64")); EXPECT_EQ(kMips, GetInstructionSetFromString("mips")); + EXPECT_EQ(kMips64, GetInstructionSetFromString("mips64")); EXPECT_EQ(kNone, GetInstructionSetFromString("none")); EXPECT_EQ(kNone, GetInstructionSetFromString("random-string")); } @@ -39,6 +40,7 @@ TEST(InstructionSetTest, GetInstructionSetString) { EXPECT_STREQ("x86", GetInstructionSetString(kX86)); EXPECT_STREQ("x86_64", GetInstructionSetString(kX86_64)); EXPECT_STREQ("mips", GetInstructionSetString(kMips)); + EXPECT_STREQ("mips64", GetInstructionSetString(kMips64)); EXPECT_STREQ("none", GetInstructionSetString(kNone)); } |