dart-sdk/tests
Jens Johansen 68c054d27f Revert "[kernel] Unrevert "Support for the partial tearoff type application operator in VM.""
This reverts commit 784ee768d8.

Reason for revert: Turns many kernel bots red.

Original change's description:
> [kernel] Unrevert "Support for the partial tearoff type application operator in VM."
> 
> The original revision is available in the first patchset.
> 
> Change-Id: I579b4b85a19ac17088eed050680a46df7ffc5c0a
> Reviewed-on: https://dart-review.googlesource.com/34102
> Commit-Queue: Samir Jindel <sjindel@google.com>
> Reviewed-by: Martin Kustermann <kustermann@google.com>

TBR=kustermann@google.com,sjindel@google.com

Change-Id: I7262f9b578bf9991f1e79aacb88c446950c79bc7
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://dart-review.googlesource.com/34340
Reviewed-by: Jens Johansen <jensj@google.com>
Commit-Queue: Jens Johansen <jensj@google.com>
2018-01-12 08:44:05 +00:00
..
angular
co19 [VM parser] Fix look-ahead parsing of void as type argument. 2018-01-11 23:42:54 +00:00
compiler Handle type argument to instance members. 2018-01-11 08:13:28 +00:00
corelib [VM, Tests] Turn Dart 2.0 fixed-size integers ON by default, v2 2018-01-05 01:44:56 +00:00
corelib_2 Push UnknownInferredType for implicitly types for-in variables. 2018-01-11 20:56:59 +00:00
dart
html Updated PYTHON code to correctly generate web_sql and re-wrote/re-enabled async web_sql test. 2017-12-29 23:51:02 +00:00
isolate Add a new boolean field "load_vmservice_library" to Dart_IsolateFlags. 2018-01-11 22:19:49 +00:00
kernel [infra] Simplify vm-kernel configurations in test matrix 2018-01-09 20:59:49 +00:00
language Support generic closures in rti analysis 2018-01-08 11:36:40 +00:00
language_2 Revert "[kernel] Unrevert "Support for the partial tearoff type application operator in VM."" 2018-01-12 08:44:05 +00:00
lib [VM, Tests] Turn Dart 2.0 fixed-size integers ON by default, v2 2018-01-05 01:44:56 +00:00
lib_2 Update status of flaky timing-out test on vm-kernel configurations 2018-01-11 12:13:03 +00:00
search
standalone [dart:io] Allow setting overrides in the root Zone 2017-12-18 22:46:07 +00:00
standalone_2 Reland "Treat most warnings as errors in strong mode." 2018-01-08 09:20: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.