| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 prefix dartc | 4 prefix dartc |
| 5 | 5 |
| 6 # This directory creates a single java junit test, with name dartc/junit_tests. |
| 7 # This status file is only used to exclude all components except dartc |
| 8 # from performing the test, in the test.py script. |
| 9 |
| 10 # The individual file and directory exclusions are hardcoded into the scripts |
| 11 # client/tests/dartc/testcfg.py and client/tests/dartc/test_config.dart. |
| 12 # The component exclusions are hardcoded into test.dart. |
| 6 | 13 |
| 7 compiler/vm/*: Skip | 14 compiler/vm/*: Skip |
| 8 | 15 |
| 9 | 16 |
| 10 # Already tested through test.py. | 17 # Already tested through test.py. |
| 11 corelib/SharedTests: Skip | 18 corelib/SharedTests: Skip |
| 12 | 19 |
| 13 | 20 |
| 14 [ $component == vm ] | 21 [ $component == vm ] |
| 15 *: Skip | 22 *: Skip |
| (...skipping 14 matching lines...) Expand all Loading... |
| 30 [ $component == dartium ] | 37 [ $component == dartium ] |
| 31 *: Skip | 38 *: Skip |
| 32 | 39 |
| 33 | 40 |
| 34 [ $component == chromium ] | 41 [ $component == chromium ] |
| 35 *: Skip | 42 *: Skip |
| 36 | 43 |
| 37 | 44 |
| 38 [ $component == frogium ] | 45 [ $component == frogium ] |
| 39 *: Skip | 46 *: Skip |
| OLD | NEW |