summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2017-05-04 02:09:07 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2017-05-04 02:09:08 +0000
commitbe216f59ead3e3fa3f1e972dfe3a619f3144bf05 (patch)
tree23efc46d416c43b475e5b9a1b7745dc53c6db1f7
parent32bd52652ee0a99a24c3372ff96abe176716e621 (diff)
parent934f9cc8d68cc9db7754b2602d6ed3ea25bb66e9 (diff)
downloadrs-be216f59ead3e3fa3f1e972dfe3a619f3144bf05.tar.gz
Merge "Fix the logging for test_rs_alloc_api()" into oc-dev
-rw-r--r--tests/java_api/RSTest_CompatLib/src/com/android/rs/test/apitest.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/apitest.rs b/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/apitest.rs
index a39c12f0..25766480 100644
--- a/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/apitest.rs
+++ b/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/apitest.rs
@@ -1357,10 +1357,10 @@ static bool test_rs_alloc_api() {
rsAllocationCopy1DRange(allocDst, 0, 0, x, a, 0, 0);
_RS_ASSERT(rsGetElementAt_char(allocDst, 1, 0) == 5);
if (failed) {
- rsDebug("test_obj_api FAILED", -1);
+ rsDebug("test_rs_alloc_api FAILED", -1);
}
else {
- rsDebug("test_obj_api PASSED", 0);
+ rsDebug("test_rs_alloc_api PASSED", 0);
}
return failed;