Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: tools/testing/dart/status_reporter.dart

Issue 2602783002: Add flutter_engine runtime to the test script so we can run standard dart tests from the test suite… (Closed)
Patch Set: Address code review comments. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/testing/dart/runtime_configuration.dart ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'dart:io'; 5 import 'dart:io';
6 import 'dart:convert'; 6 import 'dart:convert';
7 7
8 List<Map> LINUX_COMBINATIONS = [ 8 List<Map> LINUX_COMBINATIONS = [
9 { 9 {
10 'runtimes': ['none'], 10 'runtimes': ['none'],
(...skipping 12 matching lines...) Expand all
23 'modes': ['release'], 23 'modes': ['release'],
24 'archs': ['ia32'], 24 'archs': ['ia32'],
25 'compiler': 'dart2js' 25 'compiler': 'dart2js'
26 }, 26 },
27 { 27 {
28 'runtimes': ['dartium'], 28 'runtimes': ['dartium'],
29 'modes': ['release', 'debug'], 29 'modes': ['release', 'debug'],
30 'archs': ['ia32'], 30 'archs': ['ia32'],
31 'compiler': 'none' 31 'compiler': 'none'
32 }, 32 },
33 {
34 'runtimes': ['flutter_engine'],
35 'modes': ['debug', 'release'],
36 'archs': ['x64'],
37 'compiler': 'none'
38 },
33 ]; 39 ];
34 40
35 List<Map> MACOS_COMBINATIONS = [ 41 List<Map> MACOS_COMBINATIONS = [
36 { 42 {
37 'runtimes': ['vm'], 43 'runtimes': ['vm'],
38 'modes': ['debug', 'release'], 44 'modes': ['debug', 'release'],
39 'archs': ['ia32', 'x64'], 45 'archs': ['ia32', 'x64'],
40 'compiler': 'none' 46 'compiler': 'none'
41 }, 47 },
42 { 48 {
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 var pct = 100 * (value / total); 218 var pct = 100 * (value / total);
213 values.add('${pct.toStringAsFixed(3)}%'); 219 values.add('${pct.toStringAsFixed(3)}%');
214 } 220 }
215 221
216 print(values.join(',')); 222 print(values.join(','));
217 } 223 }
218 } 224 }
219 } 225 }
220 } 226 }
221 } 227 }
OLDNEW
« no previous file with comments | « tools/testing/dart/runtime_configuration.dart ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698