dart-sdk/tests
2016-10-28 21:47:50 +02:00
..
_chrome
benchmark_smoke
co19 Reland "Merge more Kernel infrastructure from kernel_sdk SDK fork." 2016-10-27 10:09:22 +02:00
compiler Update Kernel dependency. 2016-10-28 13:06:50 +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
kernel Update kernel.status to accomodate for dart2js semantics 2016-10-28 12:08:08 +02:00
language Produce the correct assertion failure expression in the face of inlining 2016-10-27 07:29:22 -07:00
lib Fix browser test status. 2016-10-18 12:50:58 -07:00
standalone change "the the" to the 2016-10-28 21:47:50 +02: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.