dart-sdk/tests
2018-11-13 12:35:13 -08:00
..
angular
co19_2 [Gardening] Mark co19 test as flaky and filed issue 2018-11-07 12:46:59 +00:00
compiler Make resolution/codegen_world_builder into libraries 2018-11-09 23:05:58 +00:00
corelib_2 [ Corelib / Tests ] Removed tests for Maps helper class, which no longer exists 2018-11-09 23:33:58 +00:00
dart
kernel [vm/aot] Fix obfuscation. 2018-10-26 13:00:33 +00:00
language_2 Issue 33553. For get/set. Don't report ABSTRACT_SUPER_MEMBER_REFERENCE if the nominal superclass has noSuchMethod(). 2018-11-12 17:31:25 +00:00
lib_2 Reland "[ VM / Mirrors ] Added type checking to enforce strong mode semantics when using dart:mirrors" 2018-11-06 23:59:29 +00:00
search
standalone Fix multicast_ttl patch for windows - previous patch made incorrect 2018-11-07 18:26:04 +00:00
standalone_2 [vm/bytecode] Fix entry point when optimized code is cleared but bytecode remains 2018-11-13 01:04:05 +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.