diff options
author | senorblanco@chromium.org <senorblanco@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-18 15:35:23 +0000 |
---|---|---|
committer | senorblanco@chromium.org <senorblanco@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-18 15:35:23 +0000 |
commit | f258a71cfa06f2050d80fc5d380700cc8c52aa9a (patch) | |
tree | 5f70b5af39d852ff7f899129b7a877a7bde16fa4 /skia/config | |
parent | 9d0026579bc6a24872eb1c05c1ca9cf3627ca088 (diff) | |
download | chromium_src-f258a71cfa06f2050d80fc5d380700cc8c52aa9a.zip chromium_src-f258a71cfa06f2050d80fc5d380700cc8c52aa9a.tar.gz chromium_src-f258a71cfa06f2050d80fc5d380700cc8c52aa9a.tar.bz2 |
This CL temporarily turns on SK_DEBUG in Release builds. The goal is
to get more useful stack traces from the reliability bots. This CL will
be reverted after a few reliability runs.
BUG=http://crbug.com/17569
TEST=none
Review URL: http://codereview.chromium.org/172094
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23625 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/config')
-rw-r--r-- | skia/config/SkUserConfig.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/skia/config/SkUserConfig.h b/skia/config/SkUserConfig.h index e88e80c8..e6b5cac 100644 --- a/skia/config/SkUserConfig.h +++ b/skia/config/SkUserConfig.h @@ -76,8 +76,15 @@ based on the presence or absence of NDEBUG, but that decision can be changed here. */ -//#define SK_DEBUG -//#define SK_RELEASE + +// TODO(senorblanco): Force SK_DEBUG temporarily, so we get asserts even in +// Release builds. This is to track down an issue on the reliability bots. +// See http://crbug.com/17569. +// +// This should be removed ASAP. + +#define SK_DEBUG +#undef SK_RELEASE /* If, in debugging mode, Skia needs to stop (presumably to invoke a debugger) |