dart-sdk/tests
Lasse Reichstein Holst Nielsen 0c18b643c6 Add RegExp.escape methods.
Fixes 4706

Bug: http://dartbug.com/4706
Change-Id: If635cb0eb7c20405ab0127a443fe51176191b5ad
Reviewed-on: https://dart-review.googlesource.com/35641
Reviewed-by: Stephen Adams <sra@google.com>
Commit-Queue: Lasse R.H. Nielsen <lrn@google.com>
2018-02-01 09:56:47 +00:00
..
angular
co19 Remove a warning (issue 31351) 2018-01-31 20:42:26 +00:00
compiler Correctly defer typedef references 2018-01-31 21:10:29 +00:00
corelib Attempt to fix bot status 2018-01-31 19:51:55 +00:00
corelib_2 Add RegExp.escape methods. 2018-02-01 09:56:47 +00:00
dart
html
isolate Revert "[vm, isolate] Send large TypedData as ExternalTypedData in isolate messages." 2018-01-31 10:22:35 +00:00
kernel Attempt to fix bot status 2018-01-31 19:51:55 +00:00
language Attempt to fix bot status 2018-01-31 19:51:55 +00:00
language_2 Fix status files to refer to correct deferred loading bug 2018-02-01 09:54:35 +00:00
lib Attempt to fix bot status 2018-01-31 19:51:55 +00:00
lib_2 fix #31999, remove fuzzy arrow runtime support from DDC 2018-01-31 22:20:38 +00:00
search
standalone
standalone_2 [kernel] Support native extensions in the VM through Kernel. 2018-01-29 14:04:35 +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.