dart-sdk/tests
asiva ce1dc86620 Adjust status file.
Change-Id: Iad9b4c3aaeabf22767a1e99d7d2e1033268570ee
Reviewed-on: https://dart-review.googlesource.com/55987
Reviewed-by: Siva Annamalai <asiva@google.com>
2018-05-19 01:11:40 +00:00
..
angular
co19 [infra] Improve cycle time of dart2js builders 2018-05-17 10:21:23 +00:00
co19_2 Update fasta parser to generate error when "throw" missing expression 2018-04-06 16:10:12 +00:00
compiler Add deferred test for local functions 2018-05-18 19:33:48 +00:00
corelib Remove support for dart:isolate in dart2js. 2018-05-10 01:20:17 +00:00
corelib_2 [kernel/vm] VM support for instantiate-to-bounds. 2018-05-18 11:07:17 +00:00
dart
html Remove support for dart:isolate in dart2js. 2018-05-10 01:20:17 +00:00
isolate Remove support for dart:isolate in dart2js. 2018-05-10 01:20:17 +00:00
kernel [infra] Keep comments intact when updating status files. 2018-04-10 19:03:21 +00:00
language Fix codesize regression from Cleanup after removing MirrorsData 2018-05-18 17:05:47 +00:00
language_2 fix #33103, switch dartdevk to use Kernel nSM stubs 2018-05-18 23:43:58 +00:00
lib [VM] Update status file, test became much slower after strong-mode changes to mirrors implementation 2018-05-09 13:33:03 +00:00
lib_2 Delete elements.dart and resolution_types.dart 2018-05-16 09:54:18 +00:00
search
standalone [dart:io] Revert recent non-utf8 path handling 2018-05-16 15:47:10 +00:00
standalone_2 Adjust status file. 2018-05-19 01:11:40 +00: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.