dart-sdk/tests
2016-10-26 17:07:18 +02:00
..
_chrome
benchmark_smoke Add test harness option for app snapshots with unoptimized code. 2016-05-26 10:37:47 -07:00
co19 Revert "Reland "Merge more Kernel infrastructure from kernel_sdk SDK fork."" 2016-10-26 17:07:18 +02:00
compiler Optimize needNoSuchMethodHandling computation 2016-10-18 16:06:03 +02:00
corelib Change Set.difference API to accept Set<Object>. 2016-10-20 14:37:15 +02:00
html Fix browser test status. 2016-10-18 12:50:58 -07:00
isolate Enable now-passing tests for Android precompilation 2016-10-21 12:16:47 -07:00
language Revert "Reland "Merge more Kernel infrastructure from kernel_sdk SDK fork."" 2016-10-26 17:07:18 +02:00
lib Fix browser test status. 2016-10-18 12:50:58 -07:00
standalone Fix http_server_response_test.dart not to use snapshots as its data. 2016-10-21 13:56:52 -07:00
utils Skip failing test under asan (see issue 27441) 2016-09-27 13:26:43 -07: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.