dart-sdk/tests
Dmitry Stefantsov 265d0d9ec1 Update status files after 8648d782
Change-Id: I14f42755ed1101a837ea13bd8de425bcb9b422cb
Reviewed-on: https://dart-review.googlesource.com/c/79210
Reviewed-by: Martin Kustermann <kustermann@google.com>
Commit-Queue: Dmitry Stefantsov <dmitryas@google.com>
2018-10-11 11:33:02 +00:00
..
angular
co19 Reland "[fasta] Report errors for bounds violations" 2018-10-11 10:20:01 +00:00
co19_2 Reland "[fasta] Report errors for bounds violations" 2018-10-11 10:20:01 +00:00
compiler Reland "[fasta] Report errors for bounds violations" 2018-10-11 10:20:01 +00:00
corelib fix some typos 2018-10-10 19:15:30 +00:00
corelib_2 [vm/bytecode] Fix return value for several BigInt intrinsics 2018-10-08 21:38:48 +00:00
dart
html Remove special handling of _htmltest.html tests. 2018-08-30 14:37:57 +00:00
isolate [VM] Remove support for option --no-preview-dart-2 2018-09-24 20:38:08 +00:00
kernel [VM] Remove support for option --no-preview-dart-2 2018-09-24 20:38:08 +00:00
language fix some typos 2018-10-10 19:15:30 +00:00
language_2 Update status files after 8648d782 2018-10-11 11:33:02 +00:00
lib fix some typos 2018-10-10 19:15:30 +00:00
lib_2 Reland "[fasta] Report errors for bounds violations" 2018-10-11 10:20:01 +00:00
search
standalone [vm] Remove script snapshots. 2018-09-26 22:49:27 +00:00
standalone_2 [vm/interpreter] Fix flaky errors when running with interpreter 2018-10-09 22:11:11 +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.