dart-sdk/tests
Johnni Winther 26e689de05 More work on signatures
Change-Id: Ifd8c20f1947149d60cca7c69e40ad85533519746
Reviewed-on: https://dart-review.googlesource.com/45700
Reviewed-by: Emily Fortuna <efortuna@google.com>
2018-03-09 08:30:28 +00:00
..
angular
co19 More status preparations to make the CQ clean 2018-03-09 06:47:28 +00:00
co19_2 *.status files and DEPS updated to include latest fixes for co19 tests 2018-03-06 12:24:43 +00:00
compiler More work on signatures 2018-03-09 08:30:28 +00:00
corelib Prepare corelib.status for flipping on CFE on dart2js 2018-03-02 19:18:49 +00:00
corelib_2 Make isInterceptedCall a field 2018-03-08 23:50:57 +00:00
dart
html Prepare additional lib, html, samples statuses: this embeds of d8-hostcheck results 2018-03-08 21:10:37 +00:00
isolate Prepare additional lib, html, samples statuses: this embeds of d8-hostcheck results 2018-03-08 21:10:37 +00:00
kernel More status preparations to make the CQ clean 2018-03-09 06:47:28 +00:00
language More status preparations to make the CQ clean 2018-03-09 06:47:28 +00:00
language_2 Deal with Function type parameter contexts in closure conversion. 2018-03-09 02:31:17 +00:00
lib Prepare additional lib, html, samples statuses: this embeds of d8-hostcheck results 2018-03-08 21:10:37 +00:00
lib_2 mark lib_2/html/fileapi_entry_test flaky on ddc+mac 2018-03-09 02:03:34 +00:00
search
standalone Update status for $compiler == fasta 2018-03-07 10:32:33 +00:00
standalone_2 Gardening: Adjust test status to fix bots again. Didn't fix the right status 2018-03-07 20:51:16 +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.