diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-03 08:01:33 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-03 08:01:33 +0000 |
commit | 4efaab1e31ee526a2a0468c8c46e00a29cf56818 (patch) | |
tree | 98a6b80f99c0c2e351e06d4efc78a5a20e73e669 /webkit/glue/cpp_bound_class_unittest.cc | |
parent | aa26dfd0411ce29cd32c9b00af3cf4c43a81cf17 (diff) | |
download | chromium_src-4efaab1e31ee526a2a0468c8c46e00a29cf56818.zip chromium_src-4efaab1e31ee526a2a0468c8c46e00a29cf56818.tar.gz chromium_src-4efaab1e31ee526a2a0468c8c46e00a29cf56818.tar.bz2 |
Disable CppBoundClassTest.InvokeMethods, it flakily triggers assertion failures.
TBR=dglazkov
BUG=68445
TEST=test_shell_tests
Review URL: http://codereview.chromium.org/6004007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70382 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/cpp_bound_class_unittest.cc')
-rw-r--r-- | webkit/glue/cpp_bound_class_unittest.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webkit/glue/cpp_bound_class_unittest.cc b/webkit/glue/cpp_bound_class_unittest.cc index 54581ad..f2ef018 100644 --- a/webkit/glue/cpp_bound_class_unittest.cc +++ b/webkit/glue/cpp_bound_class_unittest.cc @@ -230,7 +230,8 @@ TEST_F(CppBoundClassTest, SetAndGetPropertiesWithCallbacks) { CheckJavaScriptSuccess(js); } -TEST_F(CppBoundClassTest, InvokeMethods) { +// Disabled, http://crbug.com/68445. +TEST_F(CppBoundClassTest, DISABLED_InvokeMethods) { // The expression on the left is expected to return the value on the right. static const std::string tests[] = { "example.echoValue(true)", "true", |