1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-07 13:52:34 +01:00
This commit is contained in:
jumana-arm
2016-12-02 07:42:42 +00:00
committed by GitHub
16 changed files with 24 additions and 3 deletions

View File

@@ -89,13 +89,13 @@ public class BaseUiAutomation extends UiAutomatorTestCase {
public void start() {
if (enabled) {
Log.d("UX_PERF", testTag + "_start " + System.nanoTime());
Log.d("UX_PERF", testTag + "_start " + System.currentTimeMillis());
}
}
public void stop() throws Exception {
if (enabled) {
Log.d("UX_PERF", testTag + "_end " + System.nanoTime());
Log.d("UX_PERF", testTag + "_end " + System.currentTimeMillis());
}
}
}