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

Unified Diff: courgette/encode_decode_unittest.cc

Issue 664803002: Fix courgette ELF x86 dissembler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: rogue extra line Created 6 years, 2 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/encode_decode_unittest.cc
diff --git a/courgette/encode_decode_unittest.cc b/courgette/encode_decode_unittest.cc
index 0e121d67b12bc25f2d7e789dd0cc3c13b23b60cd..a3161ce4aab0aff7af59cc9c88fea3c673cc9be1 100644
--- a/courgette/encode_decode_unittest.cc
+++ b/courgette/encode_decode_unittest.cc
@@ -82,3 +82,8 @@ TEST_F(EncodeDecodeTest, Elf_Small) {
std::string file = FileContents("elf-32-1");
TestAssembleToStreamDisassemble(file, 135988);
}
+
+TEST_F(EncodeDecodeTest, Elf_HighBSS) {
+ std::string file = FileContents("elf-32-high-bss");
+ TestAssembleToStreamDisassemble(file, 7308);
+}

Powered by Google App Engine
This is Rietveld 408576698