summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorJamie Gennis <jgennis@google.com>2011-05-24 18:39:46 -0700
committerJamie Gennis <jgennis@google.com>2011-05-25 12:27:33 -0700
commitdd386ccb9039a6ece8ebeda0dfd2e81156057229 (patch)
treeb490099790e854cc76e13504e329f2e1afb0a7fa /libs
parent44e9e0d825aef362a3413dfd63812962f5de1b1a (diff)
downloadframeworks_base-dd386ccb9039a6ece8ebeda0dfd2e81156057229.zip
frameworks_base-dd386ccb9039a6ece8ebeda0dfd2e81156057229.tar.gz
frameworks_base-dd386ccb9039a6ece8ebeda0dfd2e81156057229.tar.bz2
SurfaceTexture: disable a failing test.
The SurfaceTextureSyncModeWaitRetire test was disabled. It is failing because of the synchronization hacks that were added to SurfaceTexture to work around bugs in vendor device drivers. Change-Id: I09a74538bfe14a04833acb6847471e00826cc7fc
Diffstat (limited to 'libs')
-rw-r--r--libs/gui/tests/SurfaceTextureClient_test.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/gui/tests/SurfaceTextureClient_test.cpp b/libs/gui/tests/SurfaceTextureClient_test.cpp
index 8000bde..2f704c8 100644
--- a/libs/gui/tests/SurfaceTextureClient_test.cpp
+++ b/libs/gui/tests/SurfaceTextureClient_test.cpp
@@ -453,7 +453,9 @@ TEST_F(SurfaceTextureClientTest, SurfaceTextureSyncModeMinUndequeued) {
ASSERT_EQ(OK, anw->cancelBuffer(anw.get(), buf[2]));
}
-TEST_F(SurfaceTextureClientTest, SurfaceTextureSyncModeWaitRetire) {
+// XXX: This is not expected to pass until the synchronization hacks are removed
+// from the SurfaceTexture class.
+TEST_F(SurfaceTextureClientTest, DISABLED_SurfaceTextureSyncModeWaitRetire) {
sp<ANativeWindow> anw(mSTC);
sp<SurfaceTexture> st(mST);