dart-sdk/tests
Florian Loitsch 136e476c87 Check for the type of the the spawned function.
In general we avoid explicit type-checks, but in this case the error would be only detected in the new isolate making error handling much harder.

Fixes #27185
BUG= http://dartbug.com/27185.
R=lrn@google.com

Review URL: https://codereview.chromium.org/2414173003 .
2016-10-14 13:27:11 +02:00
..
_chrome
benchmark_smoke Add test harness option for app snapshots with unoptimized code. 2016-05-26 10:37:47 -07:00
co19 Check for the type of the the spawned function. 2016-10-14 13:27:11 +02:00
compiler Handle constructor declarations. 2016-10-10 11:35:54 +02:00
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 One more round of status file updates to get the bots green. 2016-08-29 08:14:33 -07:00
language Add reference to invalid typedef so dart2js will detect it. 2016-10-14 12:56:40 +02:00
lib Update status for failing tests 2016-10-10 16:26:55 +02:00
standalone Skip env_test for dartium as it uses command line options which are not supported for dartium. 2016-10-13 12:40:40 -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.