dart-sdk/tests
Florian Schneider e25461c151 VM Propagate receiver type from calls to unique selectors in AOT compilation.
If there is no override of noSuchMethod in any class, we can
propagate the receiver type downwards from calls that call a unique
selector.

This speeds up dart2js by around 3%, a particle simulation benchmark by around 10%.

BUG=
R=rmacnak@google.com

Review URL: https://codereview.chromium.org/2412653002 .
2016-10-11 13:17:47 -07:00
..
_chrome
benchmark_smoke
co19 Update status of LibTest/isolate/Isolate/spawn_A04_t04 2016-10-11 00:34:27 +02:00
compiler Handle constructor declarations. 2016-10-10 11:35:54 +02:00
corelib Temporarily update status for 2 tests on SIMDBC. 2016-10-04 09:25:44 -07:00
html Update status for windows ie11 and firefox tests 2016-10-07 15:15:52 +02:00
isolate One more round of status file updates to get the bots green. 2016-08-29 08:14:33 -07:00
language VM Propagate receiver type from calls to unique selectors in AOT compilation. 2016-10-11 13:17:47 -07:00
lib Update status for failing tests 2016-10-10 16:26:55 +02:00
standalone Fix standalone/io/test_extension_test on SIMDBC64. 2016-10-07 10:46:02 -07:00
utils Skip failing test under asan (see issue 27441) 2016-09-27 13:26:43 -07:00
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.