summaryrefslogtreecommitdiffstats
path: root/services/surfaceflinger/tests
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-12-20 16:23:08 +0000
committerSteve Block <steveblock@google.com>2012-01-03 22:38:27 +0000
commit9d4536835248525f32f1504a3d28d5bbfa0a2910 (patch)
treed75ee99e732f634ca5892b52fa869ce520df29c9 /services/surfaceflinger/tests
parent7aa67d5ba2af9cf9998f47c5b47be86df81804a6 (diff)
downloadframeworks_native-9d4536835248525f32f1504a3d28d5bbfa0a2910.zip
frameworks_native-9d4536835248525f32f1504a3d28d5bbfa0a2910.tar.gz
frameworks_native-9d4536835248525f32f1504a3d28d5bbfa0a2910.tar.bz2
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156016 Bug: 5449033 Change-Id: I4c4e33bb9df3e39e11cd985e193e6fbab4635298
Diffstat (limited to 'services/surfaceflinger/tests')
-rw-r--r--services/surfaceflinger/tests/Transaction_test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/services/surfaceflinger/tests/Transaction_test.cpp b/services/surfaceflinger/tests/Transaction_test.cpp
index afafd8a..396a3fd 100644
--- a/services/surfaceflinger/tests/Transaction_test.cpp
+++ b/services/surfaceflinger/tests/Transaction_test.cpp
@@ -204,11 +204,11 @@ TEST_F(LayerUpdateTest, LayerResizeWorks) {
sc->checkPixel(145, 145, 63, 63, 195);
}
- LOGD("resizing");
+ ALOGD("resizing");
SurfaceComposerClient::openGlobalTransaction();
ASSERT_EQ(NO_ERROR, mFGSurfaceControl->setSize(128, 128));
SurfaceComposerClient::closeGlobalTransaction(true);
- LOGD("resized");
+ ALOGD("resized");
{
// This should not reflect the new size or color because SurfaceFlinger
// has not yet received a buffer of the correct size.
@@ -219,10 +219,10 @@ TEST_F(LayerUpdateTest, LayerResizeWorks) {
sc->checkPixel(145, 145, 63, 63, 195);
}
- LOGD("drawing");
+ ALOGD("drawing");
fillSurfaceRGBA8(mFGSurfaceControl, 63, 195, 63);
waitForPostedBuffers();
- LOGD("drawn");
+ ALOGD("drawn");
{
// This should reflect the new size and the new color.
SCOPED_TRACE("after redraw");