dart-sdk/tests
Martin Kustermann 226ffe6e88 Status file update to get debug dartk/dartkp builders green
It hits an assertion in ArgumentCheckBitsForInvocation.

Issue https://github.com/dart-lang/sdk/issues/31630

Change-Id: I2f503d81c9a965661a896d59befe0625517f2eb8
Reviewed-on: https://dart-review.googlesource.com/29081
Reviewed-by: Martin Kustermann <kustermann@google.com>
2017-12-13 09:32:23 +00:00
..
angular Migrate test block 47 and downstream dependencies to Dart 2.0. 2017-08-16 11:23:13 -07:00
co19 [Gardening] Update status for passing tests in legacy -c dartkp mode 2017-12-12 21:04:30 +00:00
compiler Avoid inlining of external functions 2017-12-13 09:28:09 +00:00
corelib Adjust status file for precompiler configuration. 2017-12-12 17:44:33 +00:00
corelib_2 Normalize all status files and enable presubmit hook. 2017-12-07 08:38:30 +00:00
dart Migrate test block 47 and downstream dependencies to Dart 2.0. 2017-08-16 11:23:13 -07:00
html Normalize all status files and enable presubmit hook. 2017-12-07 08:38:30 +00:00
isolate [vm/testing] Make --strong -c dartk configuration a Dart 2.0 configuration. 2017-12-12 12:19:10 +00:00
kernel [vm/testing] Make --strong -c dartk configuration a Dart 2.0 configuration. 2017-12-12 12:19:10 +00:00
language Skip all Dart 1.0 tests in language/corelib and standalone tests when kernel mode 2017-12-12 16:16:21 +00:00
language_2 Status file update to get debug dartk/dartkp builders green 2017-12-13 09:32:23 +00:00
lib Finish migrating stuff out of lib_strong. 2017-12-11 23:45:23 +00:00
lib_2 DDC fix to expose classes which are only created inside of the browser. 2017-12-13 03:03:09 +00:00
search Migrate test block 47 and downstream dependencies to Dart 2.0. 2017-08-16 11:23:13 -07:00
standalone Skip all Dart 1.0 tests in language/corelib and standalone tests when kernel mode 2017-12-12 16:16:21 +00:00
standalone_2 Reland: [dart:io] Adds waitForEventSync 2017-12-12 23:16:50 +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.