summaryrefslogtreecommitdiffstats
path: root/vm/test
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-10-20 11:55:54 +0100
committerSteve Block <steveblock@google.com>2011-10-26 11:28:18 +0100
commit92c1f6f1b4249e4e379452ee7b49f027052bf4ce (patch)
tree87cba8cfe24fcdc10e3f2018f0571087989f6429 /vm/test
parent1663a6c12fdf4732d7ea0a0406af6085b3c408e4 (diff)
downloadandroid_dalvik-92c1f6f1b4249e4e379452ee7b49f027052bf4ce.tar.gz
android_dalvik-92c1f6f1b4249e4e379452ee7b49f027052bf4ce.tar.bz2
android_dalvik-92c1f6f1b4249e4e379452ee7b49f027052bf4ce.zip
Rename (IF_)LOGV(_IF) to (IF_)ALOGV(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/143865 Bug: 5449033 Change-Id: I8bd96961e369a08e86ff78b82d90f20f42787eb1
Diffstat (limited to 'vm/test')
-rw-r--r--vm/test/TestHash.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/test/TestHash.cpp b/vm/test/TestHash.cpp
index d03fe494e..a58ee3f42 100644
--- a/vm/test/TestHash.cpp
+++ b/vm/test/TestHash.cpp
@@ -83,7 +83,7 @@ bool dvmTestHash()
u4 hash;
int i;
- LOGV("TestHash BEGIN");
+ ALOGV("TestHash BEGIN");
pTab = dvmHashTableCreate(dvmHashSize(12), free);
if (pTab == NULL)
@@ -185,7 +185,7 @@ bool dvmTestHash()
}
dvmHashTableFree(pTab);
- LOGV("TestHash END");
+ ALOGV("TestHash END");
return true;
}