dart-sdk/tests
Samir Jindel 77889c10e3 [vm] Fix unmatched asyncLevel with retry() helper in socket tests.
Change-Id: Ia2cba787ff02e1b3d26b8fbab9cc4057842bd4cc
Reviewed-on: https://dart-review.googlesource.com/c/87067
Commit-Queue: Samir Jindel <sjindel@google.com>
Reviewed-by: Martin Kustermann <kustermann@google.com>
Auto-Submit: Samir Jindel <sjindel@google.com>
2018-12-17 13:38:28 +00:00
..
angular
co19_2 Skip faulty test co19/LibTest/io/File/openRead_A02_t01 2018-12-14 16:12:14 +00:00
compiler Add @pragma('dart2js:disableFinal') 2018-12-13 09:35:13 +00:00
corelib_2 Update status file core corelib_2/uri_parse_test in DBC. 2018-12-05 15:48:40 +00:00
dart
kernel [vm/aot] Fix obfuscation. 2018-10-26 13:00:33 +00:00
language_2 [VM] Ensure the start of the entrypoints is also 2-byte aligned 2018-12-17 12:45:35 +00:00
lib_2 This relands "Load isolate from parent's kernel in Isolate.spawn calls.". 2018-12-14 23:45:57 +00:00
search
standalone Fix multicast_ttl patch for windows - previous patch made incorrect 2018-11-07 18:26:04 +00:00
standalone_2 [vm] Fix unmatched asyncLevel with retry() helper in socket tests. 2018-12-17 13:38:28 +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.