| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 # This directory contains tests that are intended to show the | 5 # This directory contains tests that are intended to show the |
| 6 # current state of the language. | 6 # current state of the language. |
| 7 | 7 |
| 8 [ $compiler == none || $compiler == app_jit ] | 8 [ $compiler == none || $compiler == app_jit ] |
| 9 null_is_bottom_test/22: RuntimeError # Issue 28025 | 9 null_is_bottom_test/22: RuntimeError # Issue 28025 |
| 10 null_is_bottom_test/34: RuntimeError # Issue 28025 | 10 null_is_bottom_test/34: RuntimeError # Issue 28025 |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 # The VM doesn't enforce that potentially const expressions are actually | 337 # The VM doesn't enforce that potentially const expressions are actually |
| 338 # const expressions when the constructor is called with `const`. | 338 # const expressions when the constructor is called with `const`. |
| 339 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 339 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 340 | 340 |
| 341 [$runtime == vm && $compiler == none] | 341 [$runtime == vm && $compiler == none] |
| 342 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 342 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
| 343 | 343 |
| 344 [$compiler == dart2analyzer] | 344 [$compiler == dart2analyzer] |
| 345 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. | 345 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. |
| 346 config_import_corelib_test: StaticWarning, OK | 346 config_import_corelib_test: StaticWarning, OK |
| 347 |
| 348 # Issue #28236 |
| 349 async_await_test: StaticWarning |
| 350 async_star_pause_test: StaticWarning |
| 351 async_star_test: StaticWarning |
| 352 regress_18535_test: StaticWarning |
| OLD | NEW |