diff options
author | mtklein <mtklein@chromium.org> | 2016-02-24 08:58:27 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-24 08:58:27 -0800 |
commit | d9381acb0efc84e5b54627de554c6cefc43ca97d (patch) | |
tree | ec0cda369a3c05e4c1d956dbd4776ef3b2670462 /tools | |
parent | 970fd1fbea16da013d5b103182d78499ed85f95f (diff) |
Turn off DM --pre_log on the bots. Too spammy.
BUG=skia:4978
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1734703002
Review URL: https://codereview.chromium.org/1734703002
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dm_flags.json | 13 | ||||
-rwxr-xr-x | tools/dm_flags.py | 2 |
2 files changed, 1 insertions, 14 deletions
diff --git a/tools/dm_flags.json b/tools/dm_flags.json index 1191ac9342..636aba5f2c 100644 --- a/tools/dm_flags.json +++ b/tools/dm_flags.json @@ -1,6 +1,5 @@ { "Pretend-iOS-Bot": [ - "--pre_log", "--matrix", "0", "1", @@ -220,7 +219,6 @@ "image-cacherator-from-ctable" ], "Test-Android-GCC-AndroidOne-GPU-Mali400MP2-Arm7-Release": [ - "--pre_log", "--config", "565", "8888", @@ -502,7 +500,6 @@ "~WritePixels" ], "Test-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Debug": [ - "--pre_log", "--config", "565", "8888", @@ -787,7 +784,6 @@ "~WritePixels" ], "Test-Android-GCC-GalaxyS4-GPU-SGX544-Arm7-Release": [ - "--pre_log", "--config", "565", "8888", @@ -1074,7 +1070,6 @@ "~ReadPixels" ], "Test-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release": [ - "--pre_log", "--config", "565", "8888", @@ -1353,7 +1348,6 @@ ".SRW" ], "Test-Android-GCC-Nexus9-GPU-TegraK1-Arm64-Debug": [ - "--pre_log", "--config", "565", "8888", @@ -1635,7 +1629,6 @@ "--noRAW_threading" ], "Test-Android-GCC-NexusPlayer-CPU-SSSE3-x86-Release": [ - "--pre_log", "--config", "565", "8888", @@ -1846,7 +1839,6 @@ "--noRAW_threading" ], "Test-Mac10.8-Clang-MacMini4.1-CPU-SSE4-x86_64-Release": [ - "--pre_log", "--matrix", "0", "1", @@ -2067,7 +2059,6 @@ "image-cacherator-from-ctable" ], "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN": [ - "--pre_log", "--matrix", "0", "1", @@ -2296,7 +2287,6 @@ "~Shared" ], "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN": [ - "--pre_log", "--matrix", "0", "1", @@ -2522,7 +2512,6 @@ "image-cacherator-from-ctable" ], "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Valgrind": [ - "--pre_log", "--matrix", "0", "1", @@ -2770,7 +2759,6 @@ "~Threaded" ], "Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind": [ - "--pre_log", "--matrix", "0", "1", @@ -3094,7 +3082,6 @@ "~Threaded" ], "Test-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Debug-ANGLE": [ - "--pre_log", "--matrix", "0", "1", diff --git a/tools/dm_flags.py b/tools/dm_flags.py index db09eee9a2..7a62717591 100755 --- a/tools/dm_flags.py +++ b/tools/dm_flags.py @@ -27,7 +27,7 @@ def lineno(): cov_start = lineno()+1 # We care about coverage starting just past this def. def get_args(bot): - args = ['--pre_log'] + args = [] configs = ['565', '8888', 'gpu'] |