dart-sdk/tests
Johnni Winther d3c7df35b4 Revive AbstractValueDomain
- to decouple inference results from TypeMask.

Change-Id: Ibe2ec234e84262c5bff169ec7068ca1419706029
Reviewed-on: https://dart-review.googlesource.com/53942
Reviewed-by: Sigmund Cherem <sigmund@google.com>
2018-05-08 11:20:44 +00:00
..
angular
co19 Revert "[VM] Reduce Smi size to 32 bit on 64 bit platforms" 2018-05-07 13:56:10 +00:00
co19_2
compiler Revive AbstractValueDomain 2018-05-08 11:20:44 +00:00
corelib
corelib_2 [corelib_2 tests] Bigint computations are slow on simulated architectures. 2018-05-08 00:19:58 +00:00
dart
html
isolate
kernel
language Update status 2018-05-01 12:42:31 +00:00
language_2 fix test status for a few tests changed in 3002e47e 2018-05-08 01:04:47 +00:00
lib
lib_2 fix test status for a few tests changed in 3002e47e 2018-05-08 01:04:47 +00:00
search
standalone [dart:io] Provide modern Dart-styled constants 2018-05-03 17:00:14 +00:00
standalone_2 [VM] Fix for issue 33027 (Fixes strong mode runtime error in _FileSystemWatcher 2018-05-07 17:45:02 +00: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.