dart-sdk/tests
2016-09-30 10:34:07 +02:00
..
_chrome
benchmark_smoke Add test harness option for app snapshots with unoptimized code. 2016-05-26 10:37:47 -07:00
co19 Update status for browser tests 2016-09-20 16:36:01 +02:00
compiler Rename Universe to WorldBuilder. 2016-09-30 10:34:07 +02:00
corelib Fix bug in _SimpleUri.resolve. 2016-09-29 15:00:42 +02:00
html Add test for initialization of the native interceptor dispatch property. 2016-09-21 15:14:07 -07:00
isolate One more round of status file updates to get the bots green. 2016-08-29 08:14:33 -07:00
language Fix a throw returning to a frame marked for lazy deopt that captures the stacktrace. 2016-09-28 16:51:45 -07:00
lib Don't propagate synchronous Future.wait errors immediately. 2016-09-06 11:57:43 +02:00
standalone Throw an ArgumentError if the port is out of range 2016-09-23 11:12:54 -07:00
utils Skip failing test under asan (see issue 27441) 2016-09-27 13:26:43 -07:00
light_unittest.dart
README Remove old java-based analyzer from test scripts and status files 2015-12-17 14:44:57 +01:00

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.