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

Unified Diff: chrome/renderer/spellchecker/spellcheck_unittest.cc

Issue 12913010: Disable SpellCheckTest.SpellCheckText under ThreadSanitizer v2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/spellchecker/spellcheck_unittest.cc
===================================================================
--- chrome/renderer/spellchecker/spellcheck_unittest.cc (revision 189999)
+++ chrome/renderer/spellchecker/spellcheck_unittest.cc (working copy)
@@ -467,7 +467,14 @@
// This test verifies our spellchecker can split a text into words and check
// the spelling of each word in the text.
-TEST_F(SpellCheckTest, SpellCheckText) {
+#if defined(THREAD_SANITIZER)
+// SpellCheckTest.SpellCheckText fails under ThreadSanitizer v2.
+// See http://crbug.com/217909.
+#define MAYBE_SpellCheckText DISABLED_SpellCheckText
+#else
+#define MAYBE_SpellCheckText SpellCheckText
+#endif // THREAD_SANITIZER
+TEST_F(SpellCheckTest, MAYBE_SpellCheckText) {
static const struct {
const char* language;
const wchar_t* input;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698