dart-sdk/tests
Florian Schneider 4ce88c68c3 Temporily update status of SIMD test for ARM.
This test contains denormalized numbers as expected results. As long as we use NEON
instructions which always use flush-to-zero mode, we will get 0.0 as
a result for these operations.

BUG=dartbug.com/24416
R=whesse@google.com

Review URL: https://codereview.chromium.org//1359353002 .
2015-09-23 14:08:02 +02: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 Temporily update status of SIMD test for ARM. 2015-09-23 14:08:02 +02:00
compiler Avoid warning when using return; from sync* and async* functions. 2015-09-23 13:50:56 +02:00
corelib Fix some cases where Map.containsValue did not accept Object as argument. 2015-09-23 11:26:55 +02:00
html Omit extra argument to createElement/NS if null 2015-09-22 09:28:38 -07:00
isolate dart2js cps: Support sync* and yield. 2015-09-23 11:01:34 +02:00
language Avoid warning when using return; from sync* and async* functions. 2015-09-23 13:50:56 +02:00
lib dart2js cps: Support sync* and yield. 2015-09-23 11:01:34 +02:00
standalone dart2js cps: Support sync* and yield. 2015-09-23 11:01:34 +02:00
try Revert "Update status of try tests on dartium" 2015-09-11 16:30:35 +02:00
utils Revert "Mark tests problems because of Dartium JSInterop" 2015-09-18 11:00:54 -07:00
light_unittest.dart
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.