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

Unified Diff: sdk/lib/_internal/pub/test/build/reports_dart_parse_errors_test.dart

Issue 26933003: Make pub build use barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reword doc comment. Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/pub/test/build/reports_dart_parse_errors_test.dart
diff --git a/sdk/lib/_internal/pub/test/build/reports_dart_parse_errors_test.dart b/sdk/lib/_internal/pub/test/build/reports_dart_parse_errors_test.dart
index 53535c82ba1c27c7ca0d4c6528a5fa1af9728f36..279953839ceaed42553d1bd6d4461f0ff4d23f5a 100644
--- a/sdk/lib/_internal/pub/test/build/reports_dart_parse_errors_test.dart
+++ b/sdk/lib/_internal/pub/test/build/reports_dart_parse_errors_test.dart
@@ -2,9 +2,9 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-import 'package:path/path.dart' as path;
import 'package:scheduled_test/scheduled_test.dart';
+import '../../lib/src/exit_codes.dart' as exit_codes;
import '../descriptor.dart' as d;
import '../test_pub.dart';
@@ -32,15 +32,12 @@ main() {
r"^Error on line 1 of .*[/\\]file\.dart:(.|\n)*"
r"^Error on line 1 of .*[/\\]subfile\.dart:",
multiLine: true),
- output: '''
-Finding entrypoints...
-Copying web| => build|
-'''.replaceAll('|', path.separator),
- exitCode: 0);
+ output: new RegExp(r"Building myapp\.\.\.*"),
+ exitCode: exit_codes.DATA);
+ // Doesn't output anything if an error occurred.
d.dir(appPath, [
d.dir('build', [
- d.matcherFile('file.txt', 'contents'),
d.nothing('file.dart.js'),
d.nothing('file.dart'),
d.nothing('subdir')

Powered by Google App Engine
This is Rietveld 408576698