diff options
author | mtklein <mtklein@chromium.org> | 2015-10-05 10:24:59 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-05 10:24:59 -0700 |
commit | 1f7039c6c5f0f118b629994b0bac255345e5abd6 (patch) | |
tree | 02dcda007f1d76f2152f7187ba223e0b95c05321 | |
parent | c00389e45a54e699ac20ff77a81e9de54c4e6ea4 (diff) |
Pass --images '' to nanobench to disable image benchmarking.
Enabling image benchmarking has caused most nanobench runs to fail,
both Debug and Release.
BUG=skia:3418
NOTREECHECKS=true
TBR=scroggo@google.com
Review URL: https://codereview.chromium.org/1381703003
-rw-r--r-- | tools/nanobench_flags.json | 6 | ||||
-rwxr-xr-x | tools/nanobench_flags.py | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/tools/nanobench_flags.json b/tools/nanobench_flags.json index 6084ad1609..4f669e1fe5 100644 --- a/tools/nanobench_flags.json +++ b/tools/nanobench_flags.json @@ -1,5 +1,6 @@ { "Perf-Android-GCC-NexusPlayer-GPU-PowerVR-x86-Release": [ + "--images", "--scales", "1.0", "1.1", @@ -17,6 +18,7 @@ "~desk_unicodetable" ], "Perf-Android-Nexus7-Tegra3-Arm7-Release": [ + "--images", "--scales", "1.0", "1.1", @@ -35,6 +37,7 @@ "~desk_carsvg" ], "Test-Android-GCC-GalaxyS4-GPU-SGX544-Arm7-Release": [ + "--images", "--scales", "1.0", "1.1", @@ -52,6 +55,7 @@ "~GLInstancedArraysBench" ], "Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind": [ + "--images", "--scales", "1.0", "1.1", @@ -70,6 +74,7 @@ "1" ], "Test-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Debug-ANGLE": [ + "--images", "--scales", "1.0", "1.1", @@ -91,6 +96,7 @@ "~etc1bitmap" ], "Test-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug": [ + "--images", "--scales", "1.0", "1.1", diff --git a/tools/nanobench_flags.py b/tools/nanobench_flags.py index f11ea1f0f1..f590242686 100755 --- a/tools/nanobench_flags.py +++ b/tools/nanobench_flags.py @@ -29,6 +29,9 @@ cov_start = lineno()+1 # We care about coverage starting just past this def. def get_args(bot): args = [] + # Temporarily disable image benchmarking. + args.append('--images') + if 'Appurify' not in bot: args.extend(['--scales', '1.0', '1.1']) |