From 67ae4b3735d983f4b5fbf607eb686ca3c08142e1 Mon Sep 17 00:00:00 2001 From: Aart Bik Date: Thu, 20 Jun 2019 18:09:21 +0000 Subject: [PATCH] [dart/fuzzer] Deprecate DBC nightly runs in fuzzer Rationale: Deprecating DBC cluster runs in fuzzer since the focus will move away from this mode. Our resources are better spent on running all other modes. Change-Id: I6938381fa59c5d40928d891b08725fdf7c54cece Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/106921 Reviewed-by: Siva Annamalai Commit-Queue: Aart Bik --- runtime/tools/dartfuzz/dartfuzz_test.dart | 9 +++++---- tools/bots/test_matrix.json | 6 +----- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/runtime/tools/dartfuzz/dartfuzz_test.dart b/runtime/tools/dartfuzz/dartfuzz_test.dart index ac399d26f56..b41bb372c12 100644 --- a/runtime/tools/dartfuzz/dartfuzz_test.dart +++ b/runtime/tools/dartfuzz/dartfuzz_test.dart @@ -534,14 +534,10 @@ class DartFuzzTestSession { 'jit-debug-x64', 'jit-debug-arm32', 'jit-debug-arm64', - 'jit-debug-dbc', - 'jit-debug-dbc64', 'jit-ia32', 'jit-x64', 'jit-arm32', 'jit-arm64', - 'jit-dbc', - 'jit-dbc64', 'aot-debug-x64', 'aot-x64', 'kbc-int-debug-x64', @@ -554,6 +550,11 @@ class DartFuzzTestSession { // Modes not used on cluster runs because they have outstanding issues. static const List nonClusterModes = [ + // Deprecated. + 'jit-debug-dbc', + 'jit-debug-dbc64', + 'jit-dbc', + 'jit-dbc64', // Times out often: 'aot-debug-arm32', 'aot-debug-arm64', diff --git a/tools/bots/test_matrix.json b/tools/bots/test_matrix.json index 553a091a7aa..35303958ddd 100644 --- a/tools/bots/test_matrix.json +++ b/tools/bots/test_matrix.json @@ -100,15 +100,11 @@ "out/DebugIA32/", "out/DebugSIMARM/", "out/DebugSIMARM64/", - "out/DebugSIMDBC/", - "out/DebugSIMDBC64/", "out/DebugX64/", "out/ProductX64/", "out/ReleaseIA32/", "out/ReleaseSIMARM/", "out/ReleaseSIMARM64/", - "out/ReleaseSIMDBC/", - "out/ReleaseSIMDBC64/", "out/ReleaseX64/", "third_party/pkg/", "third_party/pkg_tested/", @@ -2063,7 +2059,7 @@ "script": "tools/build.py", "arguments": [ "--mode=debug,release", - "--arch=ia32,simarm,simdbc,simdbc64", + "--arch=ia32,simarm", "runtime" ] },