Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit cf77a3b

Browse files
whessecommit-bot@chromium.org
authored andcommitted
[Test.dart] Use Compiler, Runtime, etc. classes from pkg:smith.
Change-Id: I1251c94e87fe6953f7604b5ef8f6ae5c49ab36d3 Reviewed-on: https://dart-review.googlesource.com/67522 Commit-Queue: William Hesse <[email protected]> Reviewed-by: Bob Nystrom <[email protected]> Reviewed-by: Alexander Thomas <[email protected]>
1 parent 55880df commit cf77a3b

9 files changed

Lines changed: 39 additions & 523 deletions

File tree

pkg/smith/lib/configuration.dart

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,7 @@ class Compiler extends NamedEnum {
540540
Runtime.ie9,
541541
Runtime.ie10,
542542
Runtime.ie11,
543+
Runtime.edge,
543544
Runtime.chromeOnAndroid,
544545
];
545546

@@ -557,6 +558,7 @@ class Compiler extends NamedEnum {
557558
case Compiler.appJit:
558559
case Compiler.appJitk:
559560
case Compiler.dartk:
561+
case Compiler.dartkb:
560562
return const [Runtime.vm, Runtime.selfCheck];
561563
case Compiler.precompiler:
562564
case Compiler.dartkp:
@@ -586,6 +588,7 @@ class Compiler extends NamedEnum {
586588
case Compiler.appJit:
587589
case Compiler.appJitk:
588590
case Compiler.dartk:
591+
case Compiler.dartkb:
589592
return Runtime.vm;
590593
case Compiler.precompiler:
591594
case Compiler.dartkp:
@@ -650,6 +653,7 @@ class Runtime extends NamedEnum {
650653
static const ie9 = const Runtime._('ie9');
651654
static const ie10 = const Runtime._('ie10');
652655
static const ie11 = const Runtime._('ie11');
656+
static const edge = const Runtime._('edge');
653657
static const chromeOnAndroid = const Runtime._('chromeOnAndroid');
654658
static const selfCheck = const Runtime._('self_check');
655659
static const none = const Runtime._('none');
@@ -668,6 +672,7 @@ class Runtime extends NamedEnum {
668672
ie9,
669673
ie10,
670674
ie11,
675+
edge,
671676
chromeOnAndroid,
672677
selfCheck,
673678
none
@@ -686,6 +691,7 @@ class Runtime extends NamedEnum {
686691
ie9,
687692
ie10,
688693
ie11,
694+
edge,
689695
safari,
690696
chrome,
691697
firefox,
@@ -721,6 +727,7 @@ class Runtime extends NamedEnum {
721727
case ie9:
722728
case ie10:
723729
case ie11:
730+
case edge:
724731
case chromeOnAndroid:
725732
return Compiler.dart2js;
726733

tools/bots/test_matrix.json

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -88,31 +88,6 @@
8888
"xcodebuild/ReleaseX64/dart2js_platform.dill",
8989
"xcodebuild/ReleaseX64/dart2js_platform_strong.dill"
9090
],
91-
"vm_debug": [
92-
"out/DebugIA32/",
93-
"out/DebugX64/",
94-
"xcodebuild/DebugIA32/",
95-
"xcodebuild/DebugX64/",
96-
"samples/",
97-
"samples-dev/",
98-
"tools/",
99-
"third_party/pkg/",
100-
"third_party/pkg_tested/",
101-
"third_party/d8/",
102-
"third_party/firefox_jsshell/",
103-
"third_party/observatory_pub_packages/packages/",
104-
"tests/",
105-
"pkg/async_helper/",
106-
"pkg/expect/",
107-
"pkg/js/",
108-
"pkg/meta/",
109-
"pkg/pkg.status",
110-
"pkg/status_file/",
111-
"pkg/vm/",
112-
"runtime/",
113-
"sdk/",
114-
".packages"
115-
],
11691
"vm-kernel": [
11792
"out/DebugIA32/",
11893
"out/DebugSIMARM/",
@@ -159,6 +134,7 @@
159134
"pkg/kernel/",
160135
"pkg/meta/",
161136
"pkg/pkg.status",
137+
"pkg/smith/",
162138
"pkg/status_file/",
163139
"pkg/vm/",
164140
"runtime/",

0 commit comments

Comments
 (0)