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

Side by Side Diff: tools/test.dart

Issue 539153002: Port and integrate the irregexp engine from V8 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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
OLDNEW
1 #!/usr/bin/env dart 1 #!/usr/bin/env dart
2 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
3 // for details. All rights reserved. Use of this source code is governed by a 3 // for details. All rights reserved. Use of this source code is governed by a
4 // BSD-style license that can be found in the LICENSE file. 4 // BSD-style license that can be found in the LICENSE file.
5 5
6 /** 6 /**
7 * This file is the entrypoint of the dart test suite. This suite is used 7 * This file is the entrypoint of the dart test suite. This suite is used
8 * to test: 8 * to test:
9 * 9 *
10 * 1. the dart vm 10 * 1. the dart vm
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 new Path('samples-dev'), 53 new Path('samples-dev'),
54 new Path('tests/benchmark_smoke'), 54 new Path('tests/benchmark_smoke'),
55 new Path('tests/chrome'), 55 new Path('tests/chrome'),
56 new Path('tests/compiler/dart2js'), 56 new Path('tests/compiler/dart2js'),
57 new Path('tests/compiler/dart2js_extra'), 57 new Path('tests/compiler/dart2js_extra'),
58 new Path('tests/compiler/dart2js_native'), 58 new Path('tests/compiler/dart2js_native'),
59 new Path('tests/corelib'), 59 new Path('tests/corelib'),
60 new Path('tests/html'), 60 new Path('tests/html'),
61 new Path('tests/isolate'), 61 new Path('tests/isolate'),
62 new Path('tests/language'), 62 new Path('tests/language'),
63 new Path('tests/language/regex'),
ricow1 2014/09/05 05:47:41 You don't need this, we automatically recurse into
jgruber1 2014/09/05 06:17:26 Good to know, thanks. Done.
63 new Path('tests/lib'), 64 new Path('tests/lib'),
64 new Path('tests/standalone'), 65 new Path('tests/standalone'),
65 new Path('tests/try'), 66 new Path('tests/try'),
66 new Path('tests/utils'), 67 new Path('tests/utils'),
67 new Path('utils/tests/css'), 68 new Path('utils/tests/css'),
68 new Path('utils/tests/peg'), 69 new Path('utils/tests/peg'),
69 new Path('sdk/lib/_internal/pub'), 70 new Path('sdk/lib/_internal/pub'),
70 ]; 71 ];
71 72
72 void testConfigurations(List<Map> configurations) { 73 void testConfigurations(List<Map> configurations) {
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 TestUtils.setDartDirUri(Platform.script.resolve('..')); 312 TestUtils.setDartDirUri(Platform.script.resolve('..'));
312 deleteTemporaryDartDirectories().then((_) { 313 deleteTemporaryDartDirectories().then((_) {
313 var optionsParser = new TestOptionsParser(); 314 var optionsParser = new TestOptionsParser();
314 var configurations = optionsParser.parse(arguments); 315 var configurations = optionsParser.parse(arguments);
315 if (configurations != null && configurations.length > 0) { 316 if (configurations != null && configurations.length > 0) {
316 testConfigurations(configurations); 317 testConfigurations(configurations);
317 } 318 }
318 }); 319 });
319 } 320 }
320 321
OLDNEW
« tests/language/regex/regexp_test.dart ('K') | « tests/language/regex/regexp_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698