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

Side by Side Diff: test/run_all.dart

Issue 49223002: fix webui for sdk 0.8.7 (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 1 month 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 | « test/observe_test.dart ('k') | test/testing.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 /** 5 /**
6 * This is a helper for run.sh. We try to run all of the Dart code in one 6 * This is a helper for run.sh. We try to run all of the Dart code in one
7 * instance of the Dart VM to reduce warm-up time. 7 * instance of the Dart VM to reduce warm-up time.
8 */ 8 */
9 library run_impl; 9 library run_impl;
10 10
11 import 'dart:async'; 11 import 'dart:async';
12 import 'dart:io'; 12 import 'dart:io';
13 import 'dart:isolate';
14 import 'dart:math' show min; 13 import 'dart:math' show min;
15 import 'dart:utf' show encodeUtf8; 14 import 'dart:utf' show encodeUtf8;
16 import 'package:pathos/path.dart' as path; 15 import 'package:pathos/path.dart' as path;
17 import 'package:unittest/compact_vm_config.dart'; 16 import 'package:unittest/compact_vm_config.dart';
18 import 'package:unittest/unittest.dart'; 17 import 'package:unittest/unittest.dart';
19 import 'package:web_ui/dwc.dart' as dwc; 18 import 'package:web_ui/dwc.dart' as dwc;
20 import 'package:web_ui/testing/render_test.dart'; 19 import 'package:web_ui/testing/render_test.dart';
21 20
22 import 'analyzer_test.dart' as analyzer_test; 21 import 'analyzer_test.dart' as analyzer_test;
23 import 'css_test.dart' as css_test; 22 import 'css_test.dart' as css_test;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 arguments: args, pattern: pattern, deleteDir: deleteDirectory); 101 arguments: args, pattern: pattern, deleteDir: deleteDirectory);
103 } 102 }
104 103
105 void cssCompileShadowDOMTest(String path, String pattern, 104 void cssCompileShadowDOMTest(String path, String pattern,
106 [bool deleteDirectory = true]) { 105 [bool deleteDirectory = true]) {
107 var args = ['--no-css']; 106 var args = ['--no-css'];
108 renderTests(path, path, '$path/expected', '$path/out', 107 renderTests(path, path, '$path/expected', '$path/out',
109 arguments: args, pattern: pattern, 108 arguments: args, pattern: pattern,
110 deleteDir: deleteDirectory); 109 deleteDir: deleteDirectory);
111 } 110 }
OLDNEW
« no previous file with comments | « test/observe_test.dart ('k') | test/testing.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698