dart-sdk/tests
Lasse Reichstein Holst Nielsen 414a3318ea Add jsonDecode, jsonEncode, base64Decode, base64Encode, base64UrlEncode functions.
Change-Id: Ic65ada3b107cc8e6c3459459c4bea389feef2168
Reviewed-on: https://dart-review.googlesource.com/23664
Commit-Queue: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Leaf Petersen <leafp@google.com>
2018-03-12 09:16:27 +00:00
..
angular
co19 More status preparations to make the CQ clean 2018-03-09 06:47:28 +00:00
co19_2 *.status files and DEPS updated to include latest fixes for co19 tests 2018-03-06 12:24:43 +00:00
compiler Update status 2018-03-09 09:39:35 +00:00
corelib Prepare corelib.status for flipping on CFE on dart2js 2018-03-02 19:18:49 +00:00
corelib_2 Make isInterceptedCall a field 2018-03-08 23:50:57 +00:00
dart
html Prepare additional lib, html, samples statuses: this embeds of d8-hostcheck results 2018-03-08 21:10:37 +00:00
isolate Prepare additional lib, html, samples statuses: this embeds of d8-hostcheck results 2018-03-08 21:10:37 +00:00
kernel More status preparations to make the CQ clean 2018-03-09 06:47:28 +00:00
language Fix status files after 26e689de05 2018-03-09 12:56:23 +00:00
language_2 [kernel] Record supertypes after the query intervals in CHA are built 2018-03-12 08:57:17 +00:00
lib Prepare additional lib, html, samples statuses: this embeds of d8-hostcheck results 2018-03-08 21:10:37 +00:00
lib_2 Add jsonDecode, jsonEncode, base64Decode, base64Encode, base64UrlEncode functions. 2018-03-12 09:16:27 +00:00
search
standalone Update status for $compiler == fasta 2018-03-07 10:32:33 +00:00
standalone_2 Gardening: Adjust test status to fix bots again. Didn't fix the right status 2018-03-07 20:51:16 +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.