dart-sdk/tests
Daco Harkes 04c1a2886f [vm/ffi] SimDBC64 align stack frame
And regression test for dartbug.com/37069

Fixes: https://github.com/dart-lang/sdk/issues/37176
Follow up of: https://dart-review.googlesource.com/c/sdk/+/103814
Bug: https://github.com/dart-lang/sdk/issues/37069
Change-Id: I066561b487c691952496e2ca6878ac82cee0e02e
Cq-Include-Trybots: luci.dart.try:vm-ffi-android-debug-arm-try, app-kernel-linux-debug-x64-try, vm-kernel-linux-debug-simdbc64-try,vm-kernel-mac-debug-simdbc64-try,vm-kernel-reload-mac-debug-simdbc64-try,vm-kernel-linux-debug-ia32-try,vm-dartkb-linux-debug-simarm64-try,vm-kernel-win-debug-x64-try
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/105941
Commit-Queue: Daco Harkes <dacoharkes@google.com>
Reviewed-by: Samir Jindel <sjindel@google.com>
2019-06-13 16:26:40 +00:00
..
angular
co19_2 [dart2js] Add support for BabelJS to test.py 2019-05-29 08:39:44 +00:00
compiler Delete JavaScriptBackend 2019-06-13 10:09:46 +00:00
corelib_2 [vm] RFC6874 support zoneID in uri parser 2019-06-13 16:19:35 +00:00
dart
ffi [vm/ffi] SimDBC64 align stack frame 2019-06-13 16:26:40 +00:00
kernel [tests] Avoid use of $strong because it is always true now 2019-05-16 17:41:27 +00:00
language_2 Add null checks for spread operator 2019-06-12 20:58:03 +00:00
lib_2 Remove remaining support for dart:isolate on web 2019-06-07 21:13:06 +00:00
modular Turn ddc and dart2js modular tests into suites and share their test cases 2019-06-07 21:54:56 +00:00
search
standalone [VM-Runtime] set environment when creating detached process 2019-03-12 21:09:35 +00:00
standalone_2 [tests] Update failing standalone_2/io/http_* tests for Dart 2 2019-06-12 21:17:12 +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.