| Index: tests/compiler/dart2js/js_backend_cps_ir_basic_test.dart
|
| diff --git a/tests/compiler/dart2js/js_backend_cps_ir_basic.dart b/tests/compiler/dart2js/js_backend_cps_ir_basic_test.dart
|
| similarity index 94%
|
| rename from tests/compiler/dart2js/js_backend_cps_ir_basic.dart
|
| rename to tests/compiler/dart2js/js_backend_cps_ir_basic_test.dart
|
| index d10d2c2365a6ab84a588045675d4ddae812838fc..cde5ccc047017b1018745e250897e535644ba2f8 100644
|
| --- a/tests/compiler/dart2js/js_backend_cps_ir_basic.dart
|
| +++ b/tests/compiler/dart2js/js_backend_cps_ir_basic_test.dart
|
| @@ -1,12 +1,13 @@
|
| // 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.
|
| +// VMOptions=-DUSE_CPS_IR=true
|
|
|
| // Tests for basic functionality.
|
|
|
| library basic_tests;
|
|
|
| -import 'js_backend_cps_ir_test.dart';
|
| +import 'js_backend_cps_ir.dart';
|
|
|
| const List<TestEntry> tests = const [
|
| const TestEntry("""
|
| @@ -101,3 +102,8 @@ function() {
|
| return null;
|
| }"""),
|
| ];
|
| +
|
| +
|
| +void main() {
|
| + runTests(tests);
|
| +}
|
|
|