dart-sdk/tests
Vyacheslav Egorov 328163bba9 [kernel] CloneVisitor should preserve isDefault on switch cases.
Fixes https://github.com/dart-lang/sdk/issues/32971

Change-Id: I16bf688080ee60853f5de449ead3e7feaec37fc2
Reviewed-on: https://dart-review.googlesource.com/52602
Commit-Queue: Vyacheslav Egorov <vegorov@google.com>
Reviewed-by: Alexander Markov <alexmarkov@google.com>
Reviewed-by: Martin Kustermann <kustermann@google.com>
2018-04-25 23:53:22 +00:00
..
angular
co19 [VM] Reduce Smi size to 32 bit on 64 bit platforms 2018-04-25 12:31:33 +00:00
co19_2 Update fasta parser to generate error when "throw" missing expression 2018-04-06 16:10:12 +00:00
compiler Improve error messages for annotations involving undefined names (issue 27788) 2018-04-25 17:48:49 +00:00
corelib Use interceptor for reading type arguments 2018-04-11 21:25:26 +00:00
corelib_2 [VM] Reduce Smi size to 32 bit on 64 bit platforms 2018-04-25 12:31:33 +00:00
dart
html More tests passing. 2018-04-11 02:10:25 +00:00
isolate [infra] Keep comments intact when updating status files. 2018-04-10 19:03:21 +00:00
kernel [infra] Keep comments intact when updating status files. 2018-04-10 19:03:21 +00:00
language Fix a crash in type inference 2018-04-25 21:36:25 +00:00
language_2 [kernel] CloneVisitor should preserve isDefault on switch cases. 2018-04-25 23:53:22 +00:00
lib Always call writeAnnotationList to write annotations. 2018-04-13 12:41:17 +00:00
lib_2 Improve error messages for annotations involving undefined names (issue 27788) 2018-04-25 17:48:49 +00:00
search
standalone [dart:io] Check hostname when validating cert chains on MacOS 2018-04-23 22:39:32 +00:00
standalone_2 [dart:io] Name more OtherResources in secure-bad_certificate_test 2018-04-23 23:09:44 +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.