dart-sdk/tests
Samir Jindel 184e2a8b4c [vm] Support partial instantiation of noSuchMethod forwarders in VM.
This is complicated by the fact that the normal factory method for creating
Invocation objects references the arguments descriptor to determine how many
type arguments are passed. This doesn't work for partially instantiated
closures, because the arguments descriptor will say "0" type arguments even when
there may be delayed type arguments attached to the closure from partial
instantiation. The arguments descriptor can't be modified, so we have a new
factory method which takes the number of delayed type arguments directly.

Change-Id: Ic9a35a482b3b7ef80564e674cc6207873e255111
Reviewed-on: https://dart-review.googlesource.com/54245
Commit-Queue: Samir Jindel <sjindel@google.com>
Reviewed-by: Régis Crelier <regis@google.com>
2018-05-14 14:34:58 +00:00
..
angular
co19 Remove support for dart:isolate in dart2js. 2018-05-10 01:20:17 +00:00
co19_2 Update fasta parser to generate error when "throw" missing expression 2018-04-06 16:10:12 +00:00
compiler Delete ScannerTask, DietParserTask and TypeCheckerTask 2018-05-14 08:14:07 +00:00
corelib Remove support for dart:isolate in dart2js. 2018-05-10 01:20:17 +00:00
corelib_2 fix #33019, noSuchMethod should receive default values for optional args 2018-05-12 04:18:40 +00:00
dart
html Remove support for dart:isolate in dart2js. 2018-05-10 01:20:17 +00:00
isolate Remove support for dart:isolate in dart2js. 2018-05-10 01:20:17 +00:00
kernel [infra] Keep comments intact when updating status files. 2018-04-10 19:03:21 +00:00
language Remove support for dart:isolate in dart2js. 2018-05-10 01:20:17 +00:00
language_2 [vm] Support partial instantiation of noSuchMethod forwarders in VM. 2018-05-14 14:34:58 +00:00
lib [VM] Update status file, test became much slower after strong-mode changes to mirrors implementation 2018-05-09 13:33:03 +00:00
lib_2 [vm] Reify even more generics in the mirrors implementation to appease Dart 2. 2018-05-11 19:18:49 +00:00
search
standalone Skip tests we don't care about in legacy mode 2018-05-14 13:13:17 +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.