aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjessicag.feedback@gmail.com <jessicag.feedback@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-06-21 18:34:01 +0000
committerjessicag.feedback@gmail.com <jessicag.feedback@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-06-21 18:34:01 +0000
commitdf33e47bb4b364f51722597086dcb2dcdf4ac27d (patch)
tree73914e0af19c988c58ff7d5ba9ab78b5cb777bf8 /src
parentAdd some headers necessary to build the Linux client code with the Android ND... (diff)
downloadbreakpad-df33e47bb4b364f51722597086dcb2dcdf4ac27d.tar.xz
Delete OS failing test cases and note failure in relevant .h file.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@791 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src')
-rw-r--r--src/google_breakpad/processor/network_source_line_resolver.h7
-rw-r--r--src/processor/network_source_line_resolver_server_unittest.cc56
2 files changed, 27 insertions, 36 deletions
diff --git a/src/google_breakpad/processor/network_source_line_resolver.h b/src/google_breakpad/processor/network_source_line_resolver.h
index 138b2f56..9827d555 100644
--- a/src/google_breakpad/processor/network_source_line_resolver.h
+++ b/src/google_breakpad/processor/network_source_line_resolver.h
@@ -36,6 +36,9 @@
// See network_source_line_server.h for a description of the protocol used.
// An implementation of the server side of the protocol is provided there
// as NetworkSourceLineServer.
+//
+// Note the network_source_line resolver can only properly load certain
+// stack frame elements in a limited number of environments (Windows and CFI).
#ifndef GOOGLE_BREAKPAD_PROCESSOR_NETWORK_SOURCE_LINE_RESOLVER_H__
#define GOOGLE_BREAKPAD_PROCESSOR_NETWORK_SOURCE_LINE_RESOLVER_H__
@@ -69,7 +72,7 @@ class NetworkSourceLineResolver : public SourceLineResolverInterface,
NetworkSourceLineResolver(NetworkInterface *net,
int wait_milliseconds);
virtual ~NetworkSourceLineResolver();
-
+
// SourceLineResolverInterface methods, see source_line_resolver_interface.h
// for more details.
@@ -153,7 +156,7 @@ class NetworkSourceLineResolver : public SourceLineResolverInterface,
kCFIFrameInfo = 1,
} FrameInfoType;
FrameInfoCache frame_info_cache_[2];
-
+
// Send a message to the server, wait a certain amount of time for a reply.
// Returns true if a response is received, with the response data
// in |response|.
diff --git a/src/processor/network_source_line_resolver_server_unittest.cc b/src/processor/network_source_line_resolver_server_unittest.cc
index 63558b40..0e84536c 100644
--- a/src/processor/network_source_line_resolver_server_unittest.cc
+++ b/src/processor/network_source_line_resolver_server_unittest.cc
@@ -135,14 +135,14 @@ TEST(NetworkSourceLineResolverServer, SystemTest) {
ProcessState state;
ASSERT_EQ(processor.Process(minidump_file, &state),
google_breakpad::PROCESS_OK);
- ASSERT_EQ(state.system_info()->os, kSystemInfoOS);
- ASSERT_EQ(state.system_info()->os_short, kSystemInfoOSShort);
- ASSERT_EQ(state.system_info()->os_version, kSystemInfoOSVersion);
- ASSERT_EQ(state.system_info()->cpu, kSystemInfoCPU);
- ASSERT_EQ(state.system_info()->cpu_info, kSystemInfoCPUInfo);
+ EXPECT_EQ(state.system_info()->os, kSystemInfoOS);
+ EXPECT_EQ(state.system_info()->os_short, kSystemInfoOSShort);
+ EXPECT_EQ(state.system_info()->os_version, kSystemInfoOSVersion);
+ EXPECT_EQ(state.system_info()->cpu, kSystemInfoCPU);
+ EXPECT_EQ(state.system_info()->cpu_info, kSystemInfoCPUInfo);
ASSERT_TRUE(state.crashed());
- ASSERT_EQ(state.crash_reason(), "EXCEPTION_ACCESS_VIOLATION_WRITE");
- ASSERT_EQ(state.crash_address(), 0x45U);
+ EXPECT_EQ(state.crash_reason(), "EXCEPTION_ACCESS_VIOLATION_WRITE");
+ EXPECT_EQ(state.crash_address(), 0x45U);
ASSERT_EQ(state.threads()->size(), size_t(1));
ASSERT_EQ(state.requesting_thread(), 0);
@@ -150,48 +150,36 @@ TEST(NetworkSourceLineResolverServer, SystemTest) {
ASSERT_TRUE(stack);
ASSERT_EQ(stack->frames()->size(), 4U);
+ // Can now only set non-empty/zero values for function_name, source_file_name
+ // and source line on certain platforms (ie. windows), so those are untested.
ASSERT_TRUE(stack->frames()->at(0)->module);
- ASSERT_EQ(stack->frames()->at(0)->module->base_address(), 0x400000U);
- ASSERT_EQ(stack->frames()->at(0)->module->code_file(), "c:\\test_app.exe");
- ASSERT_EQ(stack->frames()->at(0)->function_name,
- "`anonymous namespace'::CrashFunction");
- ASSERT_EQ(stack->frames()->at(0)->source_file_name, "c:\\test_app.cc");
- ASSERT_EQ(stack->frames()->at(0)->source_line, 58);
+ EXPECT_EQ(stack->frames()->at(0)->module->base_address(), 0x400000U);
+ EXPECT_EQ(stack->frames()->at(0)->module->code_file(), "c:\\test_app.exe");
ASSERT_TRUE(stack->frames()->at(1)->module);
- ASSERT_EQ(stack->frames()->at(1)->module->base_address(), 0x400000U);
- ASSERT_EQ(stack->frames()->at(1)->module->code_file(), "c:\\test_app.exe");
- ASSERT_EQ(stack->frames()->at(1)->function_name, "main");
- ASSERT_EQ(stack->frames()->at(1)->source_file_name, "c:\\test_app.cc");
- ASSERT_EQ(stack->frames()->at(1)->source_line, 65);
+ EXPECT_EQ(stack->frames()->at(1)->module->base_address(), 0x400000U);
+ EXPECT_EQ(stack->frames()->at(1)->module->code_file(), "c:\\test_app.exe");
// This comes from the CRT
ASSERT_TRUE(stack->frames()->at(2)->module);
- ASSERT_EQ(stack->frames()->at(2)->module->base_address(), 0x400000U);
- ASSERT_EQ(stack->frames()->at(2)->module->code_file(), "c:\\test_app.exe");
- ASSERT_EQ(stack->frames()->at(2)->function_name, "__tmainCRTStartup");
- ASSERT_EQ(stack->frames()->at(2)->source_file_name,
- "f:\\sp\\vctools\\crt_bld\\self_x86\\crt\\src\\crt0.c");
- ASSERT_EQ(stack->frames()->at(2)->source_line, 327);
+ EXPECT_EQ(stack->frames()->at(2)->module->base_address(), 0x400000U);
+ EXPECT_EQ(stack->frames()->at(2)->module->code_file(), "c:\\test_app.exe");
// OS frame, kernel32.dll
ASSERT_TRUE(stack->frames()->at(3)->module);
- ASSERT_EQ(stack->frames()->at(3)->module->base_address(), 0x7c800000U);
- ASSERT_EQ(stack->frames()->at(3)->module->code_file(),
+ EXPECT_EQ(stack->frames()->at(3)->module->base_address(), 0x7c800000U);
+ EXPECT_EQ(stack->frames()->at(3)->module->code_file(),
"C:\\WINDOWS\\system32\\kernel32.dll");
- ASSERT_EQ(stack->frames()->at(3)->function_name, "BaseProcessStart");
- ASSERT_TRUE(stack->frames()->at(3)->source_file_name.empty());
- ASSERT_EQ(stack->frames()->at(3)->source_line, 0);
ASSERT_EQ(state.modules()->module_count(), 13U);
ASSERT_TRUE(state.modules()->GetMainModule());
- ASSERT_EQ(state.modules()->GetMainModule()->code_file(), "c:\\test_app.exe");
- ASSERT_FALSE(state.modules()->GetModuleForAddress(0));
- ASSERT_EQ(state.modules()->GetMainModule(),
+ EXPECT_EQ(state.modules()->GetMainModule()->code_file(), "c:\\test_app.exe");
+ EXPECT_FALSE(state.modules()->GetModuleForAddress(0));
+ EXPECT_EQ(state.modules()->GetMainModule(),
state.modules()->GetModuleForAddress(0x400000));
- ASSERT_EQ(state.modules()->GetModuleForAddress(0x7c801234)->debug_file(),
+ EXPECT_EQ(state.modules()->GetModuleForAddress(0x7c801234)->debug_file(),
"kernel32.pdb");
- ASSERT_EQ(state.modules()->GetModuleForAddress(0x77d43210)->version(),
+ EXPECT_EQ(state.modules()->GetModuleForAddress(0x77d43210)->version(),
"5.1.2600.2622");
// Kill background process