| OLD | NEW |
| 1 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2016, 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 | 4 |
| 5 # Skip entire suite if not running in strong mode. | 5 # Skip entire suite if not running in strong mode. |
| 6 [ ! $strong ] | 6 [ ! $strong ] |
| 7 *: SkipByDesign | 7 *: SkipByDesign |
| 8 | 8 |
| 9 # Skip tests that are not yet strong-mode clean. | 9 # Skip tests that are not yet strong-mode clean. |
| 10 [ $strong ] | 10 [ $strong ] |
| (...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 835 stack_overflow_stacktrace_test: RuntimeError # Issue 29920 | 835 stack_overflow_stacktrace_test: RuntimeError # Issue 29920 |
| 836 stack_overflow_test: RuntimeError # Issue 29920 | 836 stack_overflow_test: RuntimeError # Issue 29920 |
| 837 stacktrace_test: RuntimeError # Issue 29920 | 837 stacktrace_test: RuntimeError # Issue 29920 |
| 838 switch_label2_test: RuntimeError # Issue 29920 | 838 switch_label2_test: RuntimeError # Issue 29920 |
| 839 switch_label_test: RuntimeError # Issue 29920 | 839 switch_label_test: RuntimeError # Issue 29920 |
| 840 switch_try_catch_test: RuntimeError # Issue 29920 | 840 switch_try_catch_test: RuntimeError # Issue 29920 |
| 841 throwing_lazy_variable_test: RuntimeError # Issue 29920 | 841 throwing_lazy_variable_test: RuntimeError # Issue 29920 |
| 842 truncdiv_test: RuntimeError # Issue 29920 | 842 truncdiv_test: RuntimeError # Issue 29920 |
| 843 type_variable_nested_test: RuntimeError # Issue 29920 | 843 type_variable_nested_test: RuntimeError # Issue 29920 |
| 844 type_variable_typedef_test: RuntimeError # Issue 29920 | 844 type_variable_typedef_test: RuntimeError # Issue 29920 |
| 845 prefix10_negative_test: Fail # Issue 29920 | 845 |
| 846 # This test does not generate the expected compile time error, but it also does |
| 847 # not behave correctly at runtime. We cannot record this as "Fail" without |
| 848 # confusing the DDC travis bot (as "Fail" is normally used for compile time |
| 849 # failures of _negative_tests). Remove "Skip" once we have the DDC travis bot |
| 850 # running on test.dart, OR when we fix dartanalyzer/dartdevc CommandOutput |
| 851 # classes to invert negative test status in the same way our other tools do. |
| 852 prefix10_negative_test: Skip # Issue 29920 |
| OLD | NEW |