dart-sdk/tests
Florian Schneider 6d66f3dea8 VM: Make optimized try-catch work in DBC.
The catch entry block has all locals in fixed locations
(Rj) where j = kNumberOfRegisters - i for parameter i.

This means we reserve a range of DBC registers at the top-end of the frame.
Those registers are blocked for general allocation to avoid any overlap
with the rest of the registers that are allocated from the bottom.

Each optimized frame with a try-catch will be kNumberOfRegisters wide.

BUG=
R=vegorov@google.com

Review URL: https://codereview.chromium.org/2388093003 .
2016-10-13 11:36:23 -07:00
..
_chrome
benchmark_smoke
co19 Update status of LibTest/isolate/Isolate/spawn_A04_t04 2016-10-11 00:34:27 +02:00
compiler
corelib VM: Make optimized try-catch work in DBC. 2016-10-13 11:36:23 -07:00
html Copy new JS Interop test from dev_compiler test suite. 2016-10-12 10:15:34 -07:00
isolate
language VM: Make optimized try-catch work in DBC. 2016-10-13 11:36:23 -07:00
lib Update status for failing tests 2016-10-10 16:26:55 +02:00
standalone Fix for issue 27567 (inconsistent handling of invalid -D options 2016-10-12 18:42:30 -07:00
utils
light_unittest.dart
README

Run Existing Tests
==================

See the output of

  ../tools/test.py --help

for how to run tests.

See also

  https://code.google.com/p/dart/wiki/Building#Testing

for detailed examples.

Create New Tests
================

See comments above

  factory StandardTestSuite.forDirectory

in

  ../tools/testing/dart/test_suite.dart

for the default test directory layout. By default test-file names must
end in "_test.dart", but some test suites, such as ./co19, subclass
StandardTestSuite and override this default.

See comments at the beginning of

  ../tools/testing/dart/multitest.dart

for how to create tests that pass by failing with a known error. For
example,

  ...
  int x = "not an int"; /// 01: static type warning
  ...

as part of a test will only pass the "--compiler dart2analyzer" test if
the assignment generates a static type warning.