dart-sdk/tests
Kevin Millikin 64b0ce5b58 Remove UI as code experimental flags from our tests
The features control-flow-collections and spread-collections have been
shipped and it is no longer necessary for tests to explicitly opt into
them.

Change-Id: I074b91d12e4e485ee4a64147947bb1113899ecdc
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/104780
Auto-Submit: Kevin Millikin <kmillikin@google.com>
Reviewed-by: Lasse R.H. Nielsen <lrn@google.com>
Commit-Queue: Kevin Millikin <kmillikin@google.com>
2019-06-06 13:17:49 +00:00
..
angular
co19_2 [dart2js] Add support for BabelJS to test.py 2019-05-29 08:39:44 +00:00
compiler Remove UI as code experimental flags from our tests 2019-06-06 13:17:49 +00:00
corelib_2 [corelib BigInt] Fix implementation of BigInt.modInverse (fixes issue #37008). 2019-05-25 22:05:51 +00:00
dart
ffi [vm/ffi] FFI callbacks on ARM32. 2019-06-03 14:36:04 +00:00
kernel [tests] Avoid use of $strong because it is always true now 2019-05-16 17:41:27 +00:00
language_2 Remove UI as code experimental flags from our tests 2019-06-06 13:17:49 +00:00
lib_2 [dart2js] Add support for BabelJS to test.py 2019-05-29 08:39:44 +00:00
search
standalone [VM-Runtime] set environment when creating detached process 2019-03-12 21:09:35 +00:00
standalone_2 [vm,dart:io] Check for socket connection success 2019-06-01 01:52:47 +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.