summaryrefslogtreecommitdiff
path: root/compiler/utils/assembler_thumb_test.cc
diff options
context:
space:
mode:
author Alex Light <allight@google.com> 2020-07-10 18:28:56 +0000
committer Treehugger Robot <treehugger-gerrit@google.com> 2020-07-10 19:34:40 +0000
commitea54b823a3a02f65c865e11bbbccb327a273c039 (patch)
treee6cb592138b95d2cb3ab5a132d56b3211915a108 /compiler/utils/assembler_thumb_test.cc
parent7285a4bc7337cf6382ac464b979ae5db986a2a53 (diff)
Revert "Switch to LLVM prebuilt tools for ART gtests"
This reverts commit 8070443ce4b31a6787c22490f18f838f8f6ed4be. Reason for revert: Failing on chrome buildbots. Test: None Bug: 137817558 Change-Id: I4cbb4898e859ce33560592dd63cbf4a413048662
Diffstat (limited to 'compiler/utils/assembler_thumb_test.cc')
-rw-r--r--compiler/utils/assembler_thumb_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/utils/assembler_thumb_test.cc b/compiler/utils/assembler_thumb_test.cc
index c20100b3b7..72dfef184d 100644
--- a/compiler/utils/assembler_thumb_test.cc
+++ b/compiler/utils/assembler_thumb_test.cc
@@ -52,9 +52,9 @@ class ArmVIXLAssemblerTest : public AssemblerTestBase {
ASSERT_TRUE(Disassemble(obj_file, &disassembly));
std::string expected2 = "\n" +
- obj_file + ": file format ELF32-arm-little\n\n\n"
+ obj_file + ": file format elf32-littlearm\n\n\n"
"Disassembly of section .text:\n\n"
- "00000000 .text:\n" +
+ "00000000 <.text>:\n" +
expected;
EXPECT_EQ(expected2, disassembly);
if (expected2 != disassembly) {