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

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

Issue 2006403003: [mips] Initial framework support for MIPS32 (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Code changes per review. Created 4 years, 7 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/cxx_wrapper.py ('k') | no next file » | 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 "utils.dart"; 10 import "utils.dart";
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 ['-r', '--runtime'], 115 ['-r', '--runtime'],
116 ['none', 'dartino_compiler', 'dartinovm', 'dartino_warnings', 116 ['none', 'dartino_compiler', 'dartinovm', 'dartino_warnings',
117 'dartino_tests', 'dartino_cc_tests'], 117 'dartino_tests', 'dartino_cc_tests'],
118 'dartino_warnings,dartino_tests,dartino_compiler,' 118 'dartino_warnings,dartino_tests,dartino_compiler,'
119 'dartino_cc_tests'), 119 'dartino_cc_tests'),
120 new _TestOptionSpecification( 120 new _TestOptionSpecification(
121 'arch', 121 'arch',
122 'The architecture to run tests for', 122 'The architecture to run tests for',
123 ['-a', '--arch'], 123 ['-a', '--arch'],
124 ['all', 'ia32', 'x64', 'arm', 'arm64', 'mips', 124 ['all', 'ia32', 'x64', 'arm', 'arm64', 'mips',
125 'simarm', 'simarm64', 'simmips', 'xarm'], 125 'simarm', 'simarm64', 'simmips', 'xarm', 'xmips'],
126 'ia32'), 126 'ia32'),
127 new _TestOptionSpecification( 127 new _TestOptionSpecification(
128 'system', 128 'system',
129 'The operating system to run tests on', 129 'The operating system to run tests on',
130 ['-s', '--system'], 130 ['-s', '--system'],
131 ['linux', 'macos', 'windows', 'lk'], 131 ['linux', 'macos', 'windows', 'lk'],
132 Platform.operatingSystem), 132 Platform.operatingSystem),
133 new _TestOptionSpecification( 133 new _TestOptionSpecification(
134 'checked', 134 'checked',
135 'Run tests in checked mode', 135 'Run tests in checked mode',
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
959 return option; 959 return option;
960 } 960 }
961 } 961 }
962 print('Unknown test option $name'); 962 print('Unknown test option $name');
963 exit(1); 963 exit(1);
964 } 964 }
965 965
966 966
967 List<_TestOptionSpecification> _options; 967 List<_TestOptionSpecification> _options;
968 } 968 }
OLDNEW
« no previous file with comments | « tools/cxx_wrapper.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698