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

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

Issue 1043263002: Adds armv5 build and test target. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « tools/gyp/configurations_make.gypi ('k') | tools/utils.py » ('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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 library test_options_parser; 5 library test_options_parser;
6 6
7 import "dart:io"; 7 import "dart:io";
8 import "drt_updater.dart"; 8 import "drt_updater.dart";
9 import "test_suite.dart"; 9 import "test_suite.dart";
10 import "path.dart"; 10 import "path.dart";
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 ['-r', '--runtime'], 102 ['-r', '--runtime'],
103 ['vm', 'd8', 'jsshell', 'drt', 'dartium', 'ff', 'firefox', 103 ['vm', 'd8', 'jsshell', 'drt', 'dartium', 'ff', 'firefox',
104 'chrome', 'safari', 'ie9', 'ie10', 'ie11', 'opera', 104 'chrome', 'safari', 'ie9', 'ie10', 'ie11', 'opera',
105 'chromeOnAndroid', 'safarimobilesim', 105 'chromeOnAndroid', 'safarimobilesim',
106 'ContentShellOnAndroid', 'DartiumOnAndroid', 'none'], 106 'ContentShellOnAndroid', 'DartiumOnAndroid', 'none'],
107 'vm'), 107 'vm'),
108 new _TestOptionSpecification( 108 new _TestOptionSpecification(
109 'arch', 109 'arch',
110 'The architecture to run tests for', 110 'The architecture to run tests for',
111 ['-a', '--arch'], 111 ['-a', '--arch'],
112 ['all', 'ia32', 'x64', 'arm', 'arm64', 'mips', 112 ['all', 'ia32', 'x64', 'arm', 'armv5', 'arm64', 'mips',
113 'simarm', 'simarm64', 'simmips'], 113 'simarm', 'simarm64', 'simmips'],
114 'ia32'), 114 'ia32'),
115 new _TestOptionSpecification( 115 new _TestOptionSpecification(
116 'system', 116 'system',
117 'The operating system to run tests on', 117 'The operating system to run tests on',
118 ['-s', '--system'], 118 ['-s', '--system'],
119 ['linux', 'macos', 'windows'], 119 ['linux', 'macos', 'windows'],
120 Platform.operatingSystem), 120 Platform.operatingSystem),
121 new _TestOptionSpecification( 121 new _TestOptionSpecification(
122 'checked', 122 'checked',
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 return option; 890 return option;
891 } 891 }
892 } 892 }
893 print('Unknown test option $name'); 893 print('Unknown test option $name');
894 exit(1); 894 exit(1);
895 } 895 }
896 896
897 897
898 List<_TestOptionSpecification> _options; 898 List<_TestOptionSpecification> _options;
899 } 899 }
OLDNEW
« no previous file with comments | « tools/gyp/configurations_make.gypi ('k') | tools/utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698