| 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 328 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 329 assert_initializer_test/none: pass | 329 assert_initializer_test/none: pass |
| 330 | 330 |
| 331 [$runtime == vm && $compiler == none && $checked] | 331 [$runtime == vm && $compiler == none && $checked] |
| 332 # The VM doesn't enforce that potentially const expressions are actually | 332 # The VM doesn't enforce that potentially const expressions are actually |
| 333 # const expressions when the constructor is called with `const`. | 333 # const expressions when the constructor is called with `const`. |
| 334 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 334 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 335 | 335 |
| 336 [$runtime == vm && $compiler == none] | 336 [$runtime == vm && $compiler == none] |
| 337 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 337 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
| 338 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 |
| 338 | 339 |
| 339 [$compiler == dart2analyzer] | 340 [$compiler == dart2analyzer] |
| 340 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. | 341 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. |
| 341 config_import_corelib_test: StaticWarning, OK | 342 config_import_corelib_test: StaticWarning, OK |
| 342 | 343 |
| 343 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 | 344 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 |
| 344 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 | 345 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 |
| 345 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 | 346 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 |
| 346 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 | 347 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 |
| 347 | 348 |
| 348 # Issue #28236 | 349 # Issue #28236 |
| 349 async_await_test: StaticWarning | 350 async_await_test: StaticWarning |
| 350 async_star_pause_test: StaticWarning | 351 async_star_pause_test: StaticWarning |
| 351 async_star_test: StaticWarning | 352 async_star_test: StaticWarning |
| 352 regress_18535_test: StaticWarning | 353 regress_18535_test: StaticWarning |
| 353 | 354 |
| 354 [ $runtime == dart_precompiled || $runtime == vm || $runtime == dartium] | 355 [ $runtime == dart_precompiled || $runtime == vm || $runtime == dartium] |
| 355 null_bottom_test/none: RuntimeError # Issue 28025 | 356 null_bottom_test/none: RuntimeError # Issue 28025 |
| 356 null_bottom_test/01: RuntimeError # Issue 28025 | 357 null_bottom_test/01: RuntimeError # Issue 28025 |
| 357 null_bottom_test/02: RuntimeError # Issue 28025 | 358 null_bottom_test/02: RuntimeError # Issue 28025 |
| OLD | NEW |