dart-sdk/tests
Samir Jindel 225a301637 [vm/ffi] Re-land "[vm/ffi] FFI callbacks on X64."
There are minor fixes for dartkb and windows.
The original revision is in patchset 1.

Change-Id: I9ab6e5fdb33fb4e84ea520c283fe94323616a8ce
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/103129
Commit-Queue: Samir Jindel <sjindel@google.com>
Auto-Submit: Samir Jindel <sjindel@google.com>
Reviewed-by: Daco Harkes <dacoharkes@google.com>
2019-05-24 02:39:13 +00:00
..
angular
co19_2 [tests] Avoid use of $strong because it is always true now 2019-05-16 17:41:27 +00:00
compiler Add support for caching results of shared modules. 2019-05-24 01:27:13 +00:00
corelib_2 [tests] Avoid use of $strong because it is always true now 2019-05-16 17:41:27 +00:00
dart
ffi [vm/ffi] Re-land "[vm/ffi] FFI callbacks on X64." 2019-05-24 02:39:13 +00:00
kernel [tests] Avoid use of $strong because it is always true now 2019-05-16 17:41:27 +00:00
language_2 Disable implicit casts but keep dynamic casts when NNBD enabled 2019-05-23 23:41:52 +00:00
lib_2 Make StreamTransformer(..) transformed stream mimic original's isBroadcast. 2019-05-20 12:44:05 +00:00
search
standalone [VM-Runtime] set environment when creating detached process 2019-03-12 21:09:35 +00:00
standalone_2 [dart:_http] Fix parsing of empty cookies and double quotes. 2019-05-23 10:05:36 +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.