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

Unified Diff: test/worker/worker_test.dart

Issue 2244703003: fixes #610, incorrect help output (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: fix usageexception printing 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/codegen_test.dart ('k') | tool/build_sdk.dart » ('j') | 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 5752822a2d5a3d6a3ff0fe56b703e93435b86b47..8cb8f6544c33f72070ab3e308700d626e979f90f 100644
--- a/test/worker/worker_test.dart
+++ b/test/worker/worker_test.dart
@@ -17,7 +17,7 @@ main() {
final argsFile = new File('test/worker/hello_world.args').absolute;
final inputDartFile = new File('test/worker/hello_world.dart').absolute;
final outputJsFile = new File('test/worker/hello_world.js').absolute;
- final executableArgs = ['bin/dartdevc.dart', 'compile',];
+ final executableArgs = ['bin/dartdevc.dart'];
final compilerArgs = [
'--no-source-map',
'--no-summarize',
@@ -118,7 +118,6 @@ main() {
test('can compile in basic mode', () {
var result = Process.runSync('dart', [
'bin/dartdevc.dart',
- 'compile',
'--summary-extension=api.ds',
'--no-source-map',
'-o',
@@ -133,7 +132,6 @@ main() {
result = Process.runSync('dart', [
'bin/dartdevc.dart',
- 'compile',
'--no-source-map',
'--no-summarize',
'--summary-extension=api.ds',
@@ -171,7 +169,6 @@ main() {
badFileDart.writeAsStringSync('main() => "hello world"');
var result = Process.runSync('dart', [
'bin/dartdevc.dart',
- 'compile',
'--no-source-map',
'-o',
badFileJs.path,
@@ -205,7 +202,6 @@ main() {
test('works if part and library supplied', () {
var result = Process.runSync('dart', [
'bin/dartdevc.dart',
- 'compile',
'--no-summarize',
'--no-source-map',
'-o',
@@ -222,7 +218,6 @@ main() {
test('works if part is not supplied', () {
var result = Process.runSync('dart', [
'bin/dartdevc.dart',
- 'compile',
'--no-summarize',
'--no-source-map',
'-o',
@@ -238,7 +233,6 @@ main() {
test('part without library is silently ignored', () {
var result = Process.runSync('dart', [
'bin/dartdevc.dart',
- 'compile',
'--no-summarize',
'--no-source-map',
'-o',
« no previous file with comments | « test/codegen_test.dart ('k') | tool/build_sdk.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698