| 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 == false ] | 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 ] |
| 11 abstract_exact_selector_test: Skip | 11 abstract_exact_selector_test: Skip |
| 12 abstract_factory_constructor_test: Skip | 12 abstract_factory_constructor_test: Skip |
| 13 abstract_getter_test: Skip | 13 abstract_getter_test: Skip |
| 14 abstract_runtime_error_test: Skip | 14 abstract_runtime_error_test: Skip |
| 15 abstract_syntax_test: Skip | 15 abstract_syntax_test: Skip |
| 16 application_negative_test: Skip | 16 application_negative_test: Skip |
| (...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 main_test/03: MissingStaticWarning # Issue 28823 | 710 main_test/03: MissingStaticWarning # Issue 28823 |
| 711 no_main_test/01: MissingStaticWarning # Issue 28823 | 711 no_main_test/01: MissingStaticWarning # Issue 28823 |
| 712 regress_23089_test: CompileTimeError # Issue 28823 | 712 regress_23089_test: CompileTimeError # Issue 28823 |
| 713 reify_typevar_static_test/00: MissingCompileTimeError # Issue 28823 | 713 reify_typevar_static_test/00: MissingCompileTimeError # Issue 28823 |
| 714 super_setter_test: StaticWarning # Issue 28823 | 714 super_setter_test: StaticWarning # Issue 28823 |
| 715 try_catch4_test: StaticWarning # Issue 28823 | 715 try_catch4_test: StaticWarning # Issue 28823 |
| 716 try_catch5_test: StaticWarning # Issue 28823 | 716 try_catch5_test: StaticWarning # Issue 28823 |
| 717 | 717 |
| 718 [ $compiler == dart2analyzer && $system != windows ] | 718 [ $compiler == dart2analyzer && $system != windows ] |
| 719 bad_raw_string_test/03: MissingCompileTimeError # Issue 28664 | 719 bad_raw_string_test/03: MissingCompileTimeError # Issue 28664 |
| OLD | NEW |