aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbenchmarks/benchmarks_run_target.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmarks/benchmarks_run_target.sh b/benchmarks/benchmarks_run_target.sh
index ed569e5..5b92c3a 100755
--- a/benchmarks/benchmarks_run_target.sh
+++ b/benchmarks/benchmarks_run_target.sh
@@ -170,15 +170,15 @@ disconnect_device() {
sync_target_adb_push() {
start_adb_section "sync_target_$1"
# Note: We use adb push since this is what lava can use too.
- safe adb push "${OUT}/system" /data/local/tmp/system
+ safe adb push "${OUT}/system" /data/local/tmp/system > /dev/null
# Push the core.art image.
- safe adb push "${OUT}/data/art-test" /data/art-test
+ safe adb push "${OUT}/data/art-test" /data/art-test > /dev/null
end_adb_section "sync_target_$1" "$?"
}
run_benchmarks() {
start_adb_section "run_benchmarks_$2_$1_$3"
- safe ./benchmarks/run.py --target --iterations "${options["iterations"]}" --mode "$1" \
+ safe ./benchmarks/run.py --target --iterations "${options["iterations"]}" --mode "$1" --noverbose \
--android-root "${ART_TEST_ANDROID_ROOT}" --output-json "${LOG_DIRECTORY}/$2_$1_$3_aot.json"
end_adb_section "run_benchmarks_$2_$1_$3" "$?"
}