diff options
| author | 2016-09-26 19:45:22 +0000 | |
|---|---|---|
| committer | 2016-09-26 19:45:23 +0000 | |
| commit | a4850b0fa18c8b92dd5c20c166856cfe87aec72f (patch) | |
| tree | f38d8d8aae51f53e7ee6b474f47597b784fc2316 /test | |
| parent | 0cfe19af3b7395658210ea6044a65c9811962a7a (diff) | |
| parent | 3fec9ac0d5af1358d216eb2fdc2000ec0205f3f0 (diff) | |
Merge "ART: Use libbase logging"
Diffstat (limited to 'test')
| -rwxr-xr-x | test/099-vmdebug/check | 2 | ||||
| -rwxr-xr-x | test/119-noimage-patchoat/check | 2 | ||||
| -rw-r--r-- | test/137-cfi/cfi.cc | 2 | ||||
| -rwxr-xr-x | test/143-string-value/check | 2 | ||||
| -rw-r--r-- | test/149-suspend-all-stress/suspend_all.cc | 8 | ||||
| -rw-r--r-- | test/Android.bp | 4 |
6 files changed, 13 insertions, 7 deletions
diff --git a/test/099-vmdebug/check b/test/099-vmdebug/check index 57111bcc99..d124ce8cfd 100755 --- a/test/099-vmdebug/check +++ b/test/099-vmdebug/check @@ -15,6 +15,6 @@ # limitations under the License. # Strip the process pids and line numbers from exact error messages. -sed -e '/^art E.*\] /d' "$2" > "$2.tmp" +sed -e '/^dalvikvm\(\|32\|64\) E.*\] /d' "$2" > "$2.tmp" diff --strip-trailing-cr -q "$1" "$2.tmp" >/dev/null diff --git a/test/119-noimage-patchoat/check b/test/119-noimage-patchoat/check index 57111bcc99..d124ce8cfd 100755 --- a/test/119-noimage-patchoat/check +++ b/test/119-noimage-patchoat/check @@ -15,6 +15,6 @@ # limitations under the License. # Strip the process pids and line numbers from exact error messages. -sed -e '/^art E.*\] /d' "$2" > "$2.tmp" +sed -e '/^dalvikvm\(\|32\|64\) E.*\] /d' "$2" > "$2.tmp" diff --strip-trailing-cr -q "$1" "$2.tmp" >/dev/null diff --git a/test/137-cfi/cfi.cc b/test/137-cfi/cfi.cc index 9f1499e38a..113b35f98d 100644 --- a/test/137-cfi/cfi.cc +++ b/test/137-cfi/cfi.cc @@ -91,7 +91,7 @@ static bool CheckStack(Backtrace* bt, const std::vector<std::string>& seq) { static void MoreErrorInfo(pid_t pid, bool sig_quit_on_fail) { printf("Secondary pid is %d\n", pid); - PrintFileToLog(StringPrintf("/proc/%d/maps", pid), ERROR); + PrintFileToLog(StringPrintf("/proc/%d/maps", pid), ::android::base::ERROR); if (sig_quit_on_fail) { int res = kill(pid, SIGQUIT); diff --git a/test/143-string-value/check b/test/143-string-value/check index 92f6e90023..2a3476c2ab 100755 --- a/test/143-string-value/check +++ b/test/143-string-value/check @@ -15,6 +15,6 @@ # limitations under the License. # Strip error log messages. -sed -e '/^art E.*\] /d' "$2" > "$2.tmp" +sed -e '/^dalvikvm\(\|32\|64\) E.*\] /d' "$2" > "$2.tmp" diff --strip-trailing-cr -q "$1" "$2.tmp" >/dev/null diff --git a/test/149-suspend-all-stress/suspend_all.cc b/test/149-suspend-all-stress/suspend_all.cc index dfd944a267..c1c0ff9f5f 100644 --- a/test/149-suspend-all-stress/suspend_all.cc +++ b/test/149-suspend-all-stress/suspend_all.cc @@ -42,14 +42,16 @@ extern "C" JNIEXPORT void JNICALL Java_Main_suspendAndResume(JNIEnv*, jclass) { break; } case kOPDumpStack: { - Runtime::Current()->GetThreadList()->Dump(LOG(INFO)); + Runtime::Current()->GetThreadList()->Dump(LOG_STREAM(INFO)); usleep(500); break; } case kOPSuspendAllDumpStack: { // Not yet supported. - // ScopedSuspendAll ssa(__FUNCTION__); - // Runtime::Current()->GetThreadList()->Dump(LOG(INFO)); + if ((false)) { + ScopedSuspendAll ssa(__FUNCTION__); + Runtime::Current()->GetThreadList()->Dump(LOG_STREAM(INFO)); + } break; } case kOPNumber: diff --git a/test/Android.bp b/test/Android.bp index 2d61000711..72dcbba9e2 100644 --- a/test/Android.bp +++ b/test/Android.bp @@ -63,6 +63,7 @@ art_cc_defaults { "libvixld-arm64", "libart-gtest", + "libbase", "libicuuc", "libicui18n", "libnativehelper", @@ -204,6 +205,7 @@ cc_defaults { ], shared_libs: [ "libbacktrace", + "libbase", "libnativehelper", ], target: { @@ -246,6 +248,7 @@ art_cc_test_library { ], shared_libs: [ "libart", + "libbase", "libopenjdkjvmti", ], } @@ -306,6 +309,7 @@ cc_defaults { ], shared_libs: [ "libbacktrace", + "libbase", "libnativehelper", ], target: { |