dart-sdk/tests
Florian Schneider d9b1bc93af Fix product mode noSuchMethod with library prefix.
Update analyzer status of test that has a static warning expected.

BUG=
R=asiva@google.com

Review URL: https://codereview.chromium.org/2413033003 .
2016-10-12 19:10:27 -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 Copy new JS Interop test from dev_compiler test suite. 2016-10-12 10:15:34 -07:00
isolate One more round of status file updates to get the bots green. 2016-08-29 08:14:33 -07:00
language Fix product mode noSuchMethod with library prefix. 2016-10-12 19:10:27 -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 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.