dart-sdk/tests
Kevin Millikin ff12f5ddd0 Remove a couple of unnecessary lines from test status files.
The test runner will generate a filename from the test name in the status
file.  If the status file contains a filename, it does not match any test.

R=whesse@google.com
BUG=

Review URL: https://codereview.chromium.org/1510943005 .
2015-12-11 14:19:58 +01:00
..
_chrome
benchmark_smoke
co19 Remove a couple of unnecessary lines from test status files. 2015-12-11 14:19:58 +01:00
compiler Enable conditional imports in unparser test. 2015-12-11 06:44:06 +01:00
corelib Upgrade confuse() function in corelib tests 2015-12-10 12:59:31 -08:00
html fix safari test 2015-12-10 16:02:27 -08:00
isolate Fix a couple more tests related to Isolate.spawn semantics change 2015-11-25 16:28:59 -08:00
language Update status file. 2015-12-11 09:47:52 +01:00
lib Report compile-time error on disallowed metadata values. 2015-12-09 15:48:38 +01:00
standalone - Assert that we do not hold the timeline lock while entering 2015-12-09 13:41:42 -08:00
try Change the order the classes are expected to be found by serialize_test 2015-12-07 16:29:26 +01:00
utils stop skipping dummy_compiler_test: the test appears to be passing. 2015-12-10 14:39:30 -08: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 dartanalyzer" test if
the assignment generates a static type warning.