dart-sdk/tests
Sigmund Cherem d50fa68176 Update strong status in host-checked mode
TBR=sra@google.com

Change-Id: I09a98a414da3356158efdb5d24d67128cfdf7f88
Reviewed-on: https://dart-review.googlesource.com/63690
Reviewed-by: Sigmund Cherem <sigmund@google.com>
Commit-Queue: Sigmund Cherem <sigmund@google.com>
2018-07-03 21:46:06 +00:00
..
angular
co19 Update dart2js-strong status across several suites 2018-07-03 00:27:31 +00:00
co19_2 Error on cyclic constructor redirect. 2018-06-28 10:37:23 +00:00
compiler Revert "Fix #32227 export dynamic from dart:core in analyzer." 2018-07-03 19:50:26 +00:00
corelib Compile time error for web int literals that cannot be represented exactly 2018-06-22 10:47:54 +00:00
corelib_2 Update dart2js-strong status across several suites 2018-07-03 00:27:31 +00:00
dart
html - Removed custom handling of fill - it was wrong the method is now overloaded. 2018-06-15 02:25:13 +00:00
isolate First pass at disabling packages/ dir, packageRoot 2018-06-12 19:38:40 +00:00
kernel Update dart2js-strong status across several suites 2018-07-03 00:27:31 +00:00
language Remove parser "synthetic_identifier_<#>" 2018-07-02 17:51:15 +00:00
language_2 Update strong status in host-checked mode 2018-07-03 21:46:06 +00:00
lib Make bots green again: mostly status updates, but also fix check in custom-element upgrades 2018-06-30 01:23:39 +00:00
lib_2 Update strong status in host-checked mode 2018-07-03 21:46:06 +00:00
search
standalone Reland: [dart:io] Adds Socket.startConnect 2018-07-03 14:47:41 +00:00
standalone_2 Reland: [dart:io] Adds Socket.startConnect 2018-07-03 14:47:41 +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.