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

Unified Diff: tests/compiler/dart2js/incremental/hello_test.dart

Issue 2647343003: Update dart2js unit tests to dart_parser and dart_scanner. (Closed)
Patch Set: Address review comments. Created 3 years, 11 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 | « tests/compiler/dart2js/incremental/compile_all.dart ('k') | tests/compiler/dart2js/link_helper.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/incremental/hello_test.dart
diff --git a/tests/compiler/dart2js/incremental/hello_test.dart b/tests/compiler/dart2js/incremental/hello_test.dart
deleted file mode 100644
index c034e05a9bc7234e001eaa1206beb1029b1e54af..0000000000000000000000000000000000000000
--- a/tests/compiler/dart2js/incremental/hello_test.dart
+++ /dev/null
@@ -1,104 +0,0 @@
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
-// 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.
-
-// Test a sequence of modifications to hello-world which used to cause problems
-// on Try Dart.
-
-import 'dart:io' show Platform;
-
-import 'dart:async' show Future;
-
-import 'package:dart2js_incremental/dart2js_incremental.dart'
- show IncrementalCompiler;
-
-import 'package:compiler/compiler.dart' show Diagnostic;
-
-import 'package:compiler/src/null_compiler_output.dart' show NullCompilerOutput;
-
-import 'package:compiler/src/old_to_new_api.dart'
- show LegacyCompilerDiagnostics;
-
-import 'package:async_helper/async_helper.dart' show asyncTest;
-
-import 'package:expect/expect.dart' show Expect;
-
-import '../memory_source_file_helper.dart' show MemorySourceFileProvider;
-
-var tests = {
- '/test1.dart': '''
-var greeting = "Hello, World!";
-
-void main() {
- print(greeting);
-}
-''',
- '/test2.dart': '''
-va greeting = "Hello, World!";
-
-void main() {
- print(greeting);
-}
-''',
- '/test3.dart': '''
- greeting = "Hello, World!";
-
-void main() {
- print(greeting);
-}
-''',
- '/test4.dart': '''
-in greeting = "Hello, World!";
-
-void main() {
- print(greeting);
-}
-''',
- '/test5.dart': '''
-int greeting = "Hello, World!";
-
-void main() {
- print(greeting);
-}
-''',
-};
-
-var testResults = {
- '/test1.dart': true,
- '/test2.dart': true,
- '/test3.dart': false,
- '/test4.dart': false,
- '/test5.dart': true,
-};
-
-main() {
- Uri libraryRoot = Uri.base.resolve('sdk/');
- Uri packageConfig = Uri.base.resolve('.packages');
- MemorySourceFileProvider provider = new MemorySourceFileProvider(tests);
- asyncTest(() => runTests(libraryRoot, packageConfig, provider));
-}
-
-Future runTests(
- Uri libraryRoot, Uri packageConfig, MemorySourceFileProvider provider) {
- IncrementalCompiler compiler = new IncrementalCompiler(
- diagnosticHandler: new LegacyCompilerDiagnostics(handler),
- inputProvider: provider,
- outputProvider: const NullCompilerOutput(),
- options: ['--analyze-main'],
- libraryRoot: libraryRoot,
- packageConfig: packageConfig);
-
- return Future.forEach(tests.keys, (String testName) {
- Uri testUri = Uri.parse('memory:$testName');
- return compiler.compile(testUri).then((bool success) {
- Expect.equals(testResults[testName], success,
- 'Compilation unexpectedly ${success ? "succeed" : "failed"}.');
- });
- });
-}
-
-void handler(Uri uri, int begin, int end, String message, Diagnostic kind) {
- if (kind != Diagnostic.VERBOSE_INFO) {
- print('$uri:$begin:$end:$message:$kind');
- }
-}
« no previous file with comments | « tests/compiler/dart2js/incremental/compile_all.dart ('k') | tests/compiler/dart2js/link_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698