dart-sdk/tests
Alexander Markov 6b67cd784b [vm] Make UBSAN happy for the code in Range::BitwiseOp
Change-Id: I3f3ca03a0930f9feac1e7e94cdb5c50ece8d7856
Reviewed-on: https://dart-review.googlesource.com/c/79420
Commit-Queue: Alexander Markov <alexmarkov@google.com>
Commit-Queue: Siva Annamalai <asiva@google.com>
Auto-Submit: Alexander Markov <alexmarkov@google.com>
Reviewed-by: Siva Annamalai <asiva@google.com>
2018-10-11 20:02:53 +00:00
..
angular
co19 Reland "[fasta] Report errors for bounds violations" 2018-10-11 10:20:01 +00:00
co19_2 [vm] Make UBSAN happy for the code in Range::BitwiseOp 2018-10-11 20:02:53 +00:00
compiler Reland "[fasta] Report errors for bounds violations" 2018-10-11 10:20:01 +00:00
corelib fix some typos 2018-10-10 19:15:30 +00:00
corelib_2 [vm/bytecode] Fix return value for several BigInt intrinsics 2018-10-08 21:38:48 +00:00
dart
html Remove special handling of _htmltest.html tests. 2018-08-30 14:37:57 +00:00
isolate [VM] Remove support for option --no-preview-dart-2 2018-09-24 20:38:08 +00:00
kernel [VM] Remove support for option --no-preview-dart-2 2018-09-24 20:38:08 +00:00
language fix some typos 2018-10-10 19:15:30 +00:00
language_2 Improve recovery when parsing named constructor invocation with invalid type arguments 2018-10-11 19:57:22 +00:00
lib fix some typos 2018-10-10 19:15:30 +00:00
lib_2 Reland "[fasta] Report errors for bounds violations" 2018-10-11 10:20:01 +00:00
search
standalone [vm] Remove script snapshots. 2018-09-26 22:49:27 +00:00
standalone_2 [vm] Extend previous status file updates. 2018-10-11 17:30:13 +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.