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

Unified Diff: test/worker/worker_test.dart

Issue 2176763002: fix #606, allow specifying the summary file extension (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: fix Created 4 years, 5 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
« no previous file with comments | « lib/src/compiler/compiler.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/worker/worker_test.dart
diff --git a/test/worker/worker_test.dart b/test/worker/worker_test.dart
index 04c5057a7731ca6c4971ab84e5da3f5915f2f5a5..6685acfda3490c08d6723cedb82178cfe5507d9c 100644
--- a/test/worker/worker_test.dart
+++ b/test/worker/worker_test.dart
@@ -101,7 +101,7 @@ main() {
final helloDart = new File('test/worker/hello.dart').absolute;
final greetingJS = new File('test/worker/greeting.js').absolute;
- final greetingSummary = new File('test/worker/greeting.sum').absolute;
+ final greetingSummary = new File('test/worker/greeting.api.ds').absolute;
final helloJS = new File('test/worker/hello_world.js').absolute;
setUp(() {
@@ -122,6 +122,7 @@ main() {
var result = Process.runSync('dart', [
'bin/dartdevc.dart',
'compile',
+ '--summary-extension=api.ds',
'--no-source-map',
'-o',
greetingJS.path,
@@ -138,6 +139,7 @@ main() {
'compile',
'--no-source-map',
'--no-summarize',
+ '--summary-extension=api.ds',
'-s',
greetingSummary.path,
'-o',
« no previous file with comments | « lib/src/compiler/compiler.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698