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

Side by Side Diff: tools/test.dart

Issue 10170027: Implement HMAC support in lib/crypto. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update after test renaming. Added back lib testing in test.dart." Created 8 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 | Annotate | Revision Log
« no previous file with comments | « tests/lib/crypto/sha256_test.dart ('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 #!/usr/bin/env dart 1 #!/usr/bin/env dart
2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2012, 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 'frog/tests/frog_native', 49 'frog/tests/frog_native',
50 'frog/tests/leg', 50 'frog/tests/leg',
51 'frog/tests/leg_only', 51 'frog/tests/leg_only',
52 'tests/benchmark_smoke', 52 'tests/benchmark_smoke',
53 'tests/corelib', 53 'tests/corelib',
54 'tests/dom', 54 'tests/dom',
55 'tests/html', 55 'tests/html',
56 'tests/isolate', 56 'tests/isolate',
57 'tests/json', 57 'tests/json',
58 'tests/language', 58 'tests/language',
59 'tests/lib',
59 'tests/utils', 60 'tests/utils',
60 'utils/tests/css', 61 'utils/tests/css',
61 'utils/tests/peg', 62 'utils/tests/peg',
62 'utils/tests/pub', 63 'utils/tests/pub',
63 ]; 64 ];
64 65
65 main() { 66 main() {
66 var startTime = new Date.now(); 67 var startTime = new Date.now();
67 var optionsParser = new TestOptionsParser(); 68 var optionsParser = new TestOptionsParser();
68 List<Map> configurations = optionsParser.parse(new Options().arguments); 69 List<Map> configurations = optionsParser.parse(new Options().arguments);
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 // Start process queue. 133 // Start process queue.
133 var queue = new ProcessQueue(maxProcesses, 134 var queue = new ProcessQueue(maxProcesses,
134 progressIndicator, 135 progressIndicator,
135 startTime, 136 startTime,
136 printTiming, 137 printTiming,
137 enqueueConfiguration, 138 enqueueConfiguration,
138 verbose, 139 verbose,
139 listTests, 140 listTests,
140 keepGeneratedTests); 141 keepGeneratedTests);
141 } 142 }
OLDNEW
« no previous file with comments | « tests/lib/crypto/sha256_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698