From 331c8e371f2a3324070a4da966af8bf296b58bbb Mon Sep 17 00:00:00 2001 From: Stephen Hines Date: Fri, 11 Sep 2020 17:03:58 -0700 Subject: Fix expected results for clang-r399163 update. llvm-objdump changed the format it uses for displaying assembly, so we must also adapt all of the ART tests similarly, since they check for exact matching output. llvm-dwarfdump has similarly changed its outputs, so we adjust our expectations there too. Bug: http://b/155835175 Test: m test-art-host-gtest Change-Id: Iefdb7b98b5f87d9c7bbad1930a4393919d9b9b34 --- compiler/utils/assembler_test_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/utils/assembler_test_base.h') diff --git a/compiler/utils/assembler_test_base.h b/compiler/utils/assembler_test_base.h index 736a292667..b4c0d0c447 100644 --- a/compiler/utils/assembler_test_base.h +++ b/compiler/utils/assembler_test_base.h @@ -150,7 +150,7 @@ class AssemblerTestBase : public testing::Test { virtual std::vector GetDisassemblerCommand() { switch (GetIsa()) { case InstructionSet::kThumb2: - return {FindTool("llvm-objdump"), "--disassemble", "-triple", "thumbv7a-linux-gnueabi"}; + return {FindTool("llvm-objdump"), "--disassemble", "--triple", "thumbv7a-linux-gnueabi"}; default: return {FindTool("llvm-objdump"), "--disassemble", "--no-show-raw-insn"}; } -- cgit v1.2.3-59-g8ed1b