dart-sdk/tests
2015-10-12 15:29:49 -07:00
..
_chrome Improve handling of intentionally broken links in test scripts. 2014-11-04 15:00:00 +00:00
benchmark_smoke dart2js cps: Support JS_CURRENT_ISOLATE. 2015-07-07 15:55:13 +02:00
co19 Suppress failing iframe test. Issue 24568 2015-10-12 15:29:49 -07:00
compiler dart2js cps_ir: BuiltinOperation improvements 2015-10-12 12:29:09 -07:00
corelib dart2js cps: Status updates and minor fixes for host checked mode. 2015-10-02 15:36:21 +02:00
html Change test name so it's easier to suppress 2015-10-12 13:31:44 -07:00
isolate 1. Write the backing data array of a GrowableObjectArray as a reference 2015-10-12 12:45:59 -07:00
language Mark newly added sqrt test as pass/fail on ia32. 2015-10-08 20:06:50 +02:00
lib dart2js cps: Status updates and minor fixes for host checked mode. 2015-10-02 15:36:21 +02:00
standalone Ensure ZILB encoder handles all typed data lists correctly 2015-10-08 18:19:02 +02:00
try Fix try 2015-10-01 12:24:38 +02:00
utils dart2js: Mark source_mirrors_test as slow 2015-09-25 18:30:21 +02:00
light_unittest.dart Upgrading tests with unittest deprecations 2014-03-31 18:33:18 +00:00
README Add language tests for Issue 18628. 2014-09-03 18:51:25 +00: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 dartanalyzer" test if
the assignment generates a static type warning.