diff options
author | simonjam@chromium.org <simonjam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-02 20:19:19 +0000 |
---|---|---|
committer | simonjam@chromium.org <simonjam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-02 20:19:19 +0000 |
commit | b02721f082619c7ee307c347eac75dc746906cf6 (patch) | |
tree | 9cff8ebf1614a13dac641b28821ca5725e948b0a /webkit/glue/cpp_bound_class_unittest.cc | |
parent | 36681ead4b5a9aa5a36d5a27e6f41561dffc0955 (diff) | |
download | chromium_src-b02721f082619c7ee307c347eac75dc746906cf6.zip chromium_src-b02721f082619c7ee307c347eac75dc746906cf6.tar.gz chromium_src-b02721f082619c7ee307c347eac75dc746906cf6.tar.bz2 |
Re-enable CppBoundClassTest.InvokeMethods
The webkit asserts that made this fail have been removed. The asserts assumed
that the clock would be monotonically increasing, but there is no such
guarantee.
BUG=68445
TEST=test_shell_tests
Review URL: http://codereview.chromium.org/6312095
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73497 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, 1 insertions, 2 deletions
diff --git a/webkit/glue/cpp_bound_class_unittest.cc b/webkit/glue/cpp_bound_class_unittest.cc index 8d11722..fd6691f 100644 --- a/webkit/glue/cpp_bound_class_unittest.cc +++ b/webkit/glue/cpp_bound_class_unittest.cc @@ -230,8 +230,7 @@ TEST_F(CppBoundClassTest, SetAndGetPropertiesWithCallbacks) { CheckJavaScriptSuccess(js); } -// Disabled, http://crbug.com/68445. -TEST_F(CppBoundClassTest, DISABLED_InvokeMethods) { +TEST_F(CppBoundClassTest, InvokeMethods) { // The expression on the left is expected to return the value on the right. static const std::string tests[] = { "example.echoValue(true)", "true", |