diff options
author | jimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2011-03-14 17:35:26 +0000 |
---|---|---|
committer | jimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2011-03-14 17:35:26 +0000 |
commit | a4a992251252f7eff764c45eb82fd6287d8efc0c (patch) | |
tree | 422ea06155309110c35a6f22b8d446289ea50b52 | |
parent | Merge adjacent mappings with the same name into one module in LinuxDumper. (diff) | |
download | breakpad-a4a992251252f7eff764c45eb82fd6287d8efc0c.tar.xz |
Issue 417: update unit tests after adding unnamed function detection
In r779, at the last moment, I added a default call count expectation for
the UnnamedFunction warning to the CUFixtureBase constructor, but didn't
re-run the tests. This patch adjusts all affected tests.
a=jimblandy, r=ted.mielczarek
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@782 4c0a9323-5329-0410-9bdc-e9ce6186880e
-rw-r--r-- | src/common/dwarf_cu_to_module_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/dwarf_cu_to_module_unittest.cc b/src/common/dwarf_cu_to_module_unittest.cc index 2930ff5a..cea1a487 100644 --- a/src/common/dwarf_cu_to_module_unittest.cc +++ b/src/common/dwarf_cu_to_module_unittest.cc @@ -1490,9 +1490,9 @@ TEST_F(Specifications, BadOffset) { StartCU(); DeclarationDIE(&root_handler_, 0xefd7f7752c27b7e4ULL, - dwarf2reader::DW_TAG_subprogram, "function"); + dwarf2reader::DW_TAG_subprogram, ""); DefinitionDIE(&root_handler_, dwarf2reader::DW_TAG_subprogram, - 0x2be953efa6f9a996ULL, "", + 0x2be953efa6f9a996ULL, "function", 0xa0277efd7ce83771ULL, 0x149554a184c730c1ULL); root_handler_.Finish(); } |