| 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 async/async_await_sync_completer_test: Skip | 11 async/async_await_sync_completer_test: Skip |
| 12 async/async_await_zones_test: Skip | 12 async/async_await_zones_test: Skip |
| 13 async/catch_errors2_test: Skip | 13 async/catch_errors2_test: Skip |
| 14 async/catch_errors3_test: Skip | 14 async/catch_errors3_test: Skip |
| 15 async/catch_errors_test: Skip | 15 async/catch_errors_test: Skip |
| 16 async/future_microtask_test: Skip | 16 async/future_microtask_test: Skip |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 typed_data/int32x4_test: Skip | 154 typed_data/int32x4_test: Skip |
| 155 | 155 |
| 156 [ $compiler == dart2analyzer && $strong ] | 156 [ $compiler == dart2analyzer && $strong ] |
| 157 html/custom/created_callback_test: CompileTimeError # Issue 28969 | 157 html/custom/created_callback_test: CompileTimeError # Issue 28969 |
| 158 html/custom/document_register_basic_test: CompileTimeError # Issue 28969 | 158 html/custom/document_register_basic_test: CompileTimeError # Issue 28969 |
| 159 html/custom/document_register_type_extensions_test: CompileTimeError # Issue 289
69 | 159 html/custom/document_register_type_extensions_test: CompileTimeError # Issue 289
69 |
| 160 html/custom/element_upgrade_test: CompileTimeError # Issue 28969 | 160 html/custom/element_upgrade_test: CompileTimeError # Issue 28969 |
| 161 html/debugger_test: CompileTimeError # Issue 28969 | 161 html/debugger_test: CompileTimeError # Issue 28969 |
| 162 html/js_typed_interop_default_arg_test/default_value: MissingCompileTimeError #
Issue 28969 | 162 html/js_typed_interop_default_arg_test/default_value: MissingCompileTimeError #
Issue 28969 |
| 163 mirrors/deferred_mirrors_metadata_test: StaticWarning # Issue 28969 | 163 mirrors/deferred_mirrors_metadata_test: StaticWarning # Issue 28969 |
| OLD | NEW |