dart-sdk/tests
Sigmund Cherem f71d204185 Fix expected type in substByContext
Note: the crash in language_2.status was added as a result of
https://dart-review.googlesource.com/c/sdk/+/49835.
Change-Id: I0dbd69a7cf80c6c432938f9bfd9df60703d5b367
Reviewed-on: https://dart-review.googlesource.com/50361
Reviewed-by: Stephen Adams <sra@google.com>
Commit-Queue: Sigmund Cherem <sigmund@google.com>
2018-04-10 00:05:01 +00:00
..
angular
co19 [VM] Reduce Smi size to 32 bit on 64 bit platforms 2018-04-09 12:45:57 +00:00
co19_2 Update fasta parser to generate error when "throw" missing expression 2018-04-06 16:10:12 +00:00
compiler dart2js: handle constant casts with type variable substitutions 2018-04-09 18:31:46 +00:00
corelib Remove Maps; move _fillMapWith* methods to MapBase 2018-03-26 21:23:21 +00:00
corelib_2 js_runtime: fix _JsonMap keys list type 2018-04-09 17:19:36 +00:00
dart
html Fixed MessageChannel receiveing messages on ports. 2018-03-30 17:16:15 +00:00
isolate Round 6 of status updates: remaining issues in d8, safari, ie11, ff (hopefully) 2018-03-14 19:25:29 +00:00
kernel More status preparations to make the CQ clean 2018-03-09 06:47:28 +00:00
language [fasta] Disable upwards new/const completion 2018-04-06 19:31:22 +00:00
language_2 Fix expected type in substByContext 2018-04-10 00:05:01 +00:00
lib [fasta] Do new/const insertion in simple cases 2018-03-30 18:35:05 +00:00
lib_2 Create _nullFuture and _falseFuture in the root zone. 2018-04-06 16:10:52 +00:00
search
standalone [dart:io] Adds IOOverrides.socketConnect 2018-03-28 23:07:49 +00:00
standalone_2 Revert "Reland "[VM] Introduction of type testing stubs - Part 1-4"" 2018-04-09 14:29:07 +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.