summaryrefslogtreecommitdiffstats
path: root/base/debug_util_unittest.cc
diff options
context:
space:
mode:
authorajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-24 01:19:00 +0000
committerajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-24 01:19:00 +0000
commit4f991420767e0051e7f49019ab0e431c229a2345 (patch)
tree1434d223f8a8f64f5075eb482fdd6468a7368a97 /base/debug_util_unittest.cc
parentb3caa91a49ade3ae3f63159f7bb2189b33c14805 (diff)
downloadchromium_src-4f991420767e0051e7f49019ab0e431c229a2345.zip
chromium_src-4f991420767e0051e7f49019ab0e431c229a2345.tar.gz
chromium_src-4f991420767e0051e7f49019ab0e431c229a2345.tar.bz2
Symbols aren't always present, which causes this test to fail. In particular, symbols are not present on the buildbot which means this test always fails on the buildbot. Disabling the code for now to bring the tree green.
Review URL: http://codereview.chromium.org/92112 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14401 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug_util_unittest.cc')
-rw-r--r--base/debug_util_unittest.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/base/debug_util_unittest.cc b/base/debug_util_unittest.cc
index 2636e45..418dc0a 100644
--- a/base/debug_util_unittest.cc
+++ b/base/debug_util_unittest.cc
@@ -31,6 +31,10 @@ TEST(StackTrace, OutputToStream) {
return;
}
+#if 0
+//TODO(ajwong): Disabling checking of symbol resolution since it depends
+// on whether or not symbols are present, and there are too many
+// configurations to reliably ensure that symbols are findable.
#if defined(OS_MACOSX)
// Symbol resolution via the backtrace_symbol funciton does not work well
@@ -69,4 +73,5 @@ TEST(StackTrace, OutputToStream) {
<< backtrace_message;
#endif // define(OS_MACOSX)
+#endif
}