Commit 2c313ddc authored by Tobias Sargeant's avatar Tobias Sargeant Committed by Commit Bot

Disable failing UserDataHost tests

TBR: jinsukkim@chromium.org
Bug: 877918
Change-Id: I73811d10e7c7e3af1ded812178424d69298d40f7
Reviewed-on: https://chromium-review.googlesource.com/1189863
Commit-Queue: Tobias Sargeant <tobiasjs@chromium.org>
Reviewed-by: default avatarTobias Sargeant <tobiasjs@chromium.org>
Cr-Commit-Position: refs/heads/master@{#586225}
parent 0e96f4f9
......@@ -11,6 +11,7 @@ import org.junit.Test;
import org.junit.runner.RunWith;
import org.chromium.base.test.BaseJUnit4ClassRunner;
import org.chromium.base.test.util.DisabledTest;
/**
* Test class for {@link UserDataHost}.
......@@ -80,6 +81,7 @@ public class UserDataHostTest {
*/
@Test
@SmallTest
@DisabledTest
public void testBasicOperations() {
TestObjectA obj = new TestObjectA();
mHost.setUserData(TestObjectA.class, obj);
......@@ -94,6 +96,7 @@ public class UserDataHostTest {
*/
@Test
@SmallTest
@DisabledTest
public void testNullKeyOrDataAreDisallowed() {
TestObjectA obj = new TestObjectA();
assertSetUserData(null, null);
......@@ -123,6 +126,7 @@ public class UserDataHostTest {
*/
@Test
@SmallTest
@DisabledTest
public void testSingleThreadPolicy() {
TestObjectA obj = new TestObjectA();
mHost.setUserData(TestObjectA.class, obj);
......@@ -152,6 +156,7 @@ public class UserDataHostTest {
*/
@Test
@SmallTest
@DisabledTest
public void testOperationsDisallowedAfterDestroy() {
TestObjectA obj = new TestObjectA();
mHost.setUserData(TestObjectA.class, obj);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment