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

Side by Side Diff: tests/compiler/dart2js/analyze_test_test.dart

Issue 2238073005: Fix http test (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | tests/compiler/dart2js/http_launch_data/http_launch_main.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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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 dart2js.analyze_test.test; 5 library dart2js.analyze_test.test;
6 6
7 import 'dart:io'; 7 import 'dart:io';
8 8
9 import 'package:async_helper/async_helper.dart'; 9 import 'package:async_helper/async_helper.dart';
10 import 'package:compiler/src/apiimpl.dart' show 10 import 'package:compiler/src/apiimpl.dart' show
(...skipping 17 matching lines...) Expand all
28 const Map<String, List/*<String|MessageKind>*/> WHITE_LIST = const { 28 const Map<String, List/*<String|MessageKind>*/> WHITE_LIST = const {
29 "/test/src/util/": const [ 29 "/test/src/util/": const [
30 "Library 'package:async/async.dart' doesn't export a " 30 "Library 'package:async/async.dart' doesn't export a "
31 "'ForkableStream' declaration.", 31 "'ForkableStream' declaration.",
32 ], 32 ],
33 }; 33 };
34 34
35 const List<String> SKIP_LIST = const <String>[ 35 const List<String> SKIP_LIST = const <String>[
36 // Helper files: 36 // Helper files:
37 "/data/", 37 "/data/",
38 "http_launch_data/", 38 "quarantined/http_launch_data/",
39 "mirrors_helper.dart", 39 "mirrors_helper.dart",
40 "path%20with%20spaces/", 40 "path%20with%20spaces/",
41 // Broken tests: 41 // Broken tests:
42 "quarantined/http_test.dart", 42 "quarantined/http_test.dart",
43 // Package directory 43 // Package directory
44 "packages/", 44 "packages/",
45 ]; 45 ];
46 46
47 main(List<String> arguments) { 47 main(List<String> arguments) {
48 List<String> options = <String>[]; 48 List<String> options = <String>[];
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 } 92 }
93 } 93 }
94 } 94 }
95 await analyze( 95 await analyze(
96 uriList, 96 uriList,
97 WHITE_LIST, 97 WHITE_LIST,
98 mode: AnalysisMode.URI, 98 mode: AnalysisMode.URI,
99 options: options); 99 options: options);
100 }); 100 });
101 } 101 }
OLDNEW
« no previous file with comments | « no previous file | tests/compiler/dart2js/http_launch_data/http_launch_main.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698