Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2526)

Unified Diff: courgette/disassembler_elf_32_x86_unittest.cc

Issue 1928683002: [Courgette] ELF: Fix abs32 / rel32 ordering in ParseFile() and restrict rel32 parsing to .text. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: courgette/disassembler_elf_32_x86_unittest.cc
diff --git a/courgette/disassembler_elf_32_x86_unittest.cc b/courgette/disassembler_elf_32_x86_unittest.cc
index 521596be44e41579ae52819fdfb8fddd7528b390..7060dd342efe0cdd6a31841fc3d80c248f702da8 100644
--- a/courgette/disassembler_elf_32_x86_unittest.cc
+++ b/courgette/disassembler_elf_32_x86_unittest.cc
@@ -131,8 +131,8 @@ void DisassemblerElf32X86Test::TestExe(const char* file_name,
} // namespace
TEST_F(DisassemblerElf32X86Test, All) {
- TestExe("elf-32-1", 200, 3441);
- TestExe("elf-32-high-bss", 0, 13);
+ TestExe("elf-32-1", 200, 3337);
+ TestExe("elf-32-high-bss", 0, 4);
}
} // namespace courgette

Powered by Google App Engine
This is Rietveld 408576698