| Index: tests/compiler/dart2js/sourcemaps/source_mapping_invokes_test.dart
|
| diff --git a/tools/canary.dart b/tests/compiler/dart2js/sourcemaps/source_mapping_invokes_test.dart
|
| similarity index 75%
|
| copy from tools/canary.dart
|
| copy to tests/compiler/dart2js/sourcemaps/source_mapping_invokes_test.dart
|
| index cca1f90cd7be8eb2481a00a89bbc7ba7edaa6d4f..20359e4017ce6ebe809ac04e0bb4da488dd6b8a4 100644
|
| --- a/tools/canary.dart
|
| +++ b/tests/compiler/dart2js/sourcemaps/source_mapping_invokes_test.dart
|
| @@ -2,10 +2,8 @@
|
| // 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.
|
|
|
| -// Script which exits with code 42.
|
| -
|
| -import 'dart:io';
|
| +import 'source_mapping_tester.dart' as tester;
|
|
|
| void main() {
|
| - exitCode = 42;
|
| -}
|
| + tester.main(['invokes']);
|
| +}
|
|
|