| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 prefix standalone | 5 prefix standalone |
| 6 | 6 |
| 7 TimeoutTest: Skip # Timeout test for testing the test runner. | 7 TimeoutTest: Skip # Timeout test for testing the test runner. |
| 8 FailTest: Fail, OK # Fails intentionally | 8 FailTest: Fail, OK # Fails intentionally |
| 9 | 9 |
| 10 [ $component == vm && $checked ] | 10 [ $component == vm && $checked ] |
| 11 # These tests have type errors on purpose. | 11 # These tests have type errors on purpose. |
| 12 io/ProcessInvalidArgumentsTest: Fail, OK | 12 io/ProcessInvalidArgumentsTest: Fail, OK |
| 13 io/DirectoryInvalidArgumentsTest: Fail, OK | 13 io/DirectoryInvalidArgumentsTest: Fail, OK |
| 14 io/FileInvalidArgumentsTest: Fail, OK | 14 io/FileInvalidArgumentsTest: Fail, OK |
| 15 | 15 |
| 16 [ $component == vm] | 16 [ $component == vm] |
| 17 io/ManyEchoServerTest: Skip # Bug 5103754 | 17 io/ManyEchoServerTest: Skip # Bug 5103754 |
| 18 # These tests fail, crash, and timeout to test the testing infrastructure. | 18 # These tests fail, crash, and timeout to test the testing infrastructure. |
| 19 io/TestExtensionTest: Fail # shared library in wrong place (issue 1817) | 19 io/TestExtensionTest: Fail # shared library in wrong place (issue 1817) |
| 20 | 20 |
| 21 [ $component == vm && $system == macos] | 21 [ $component == vm && $system == macos] |
| 22 # This test fails with "Too many open files" on the Mac OS buildbot. | 22 # This test fails with "Too many open files" on the Mac OS buildbot. |
| 23 io/SocketManyConnectionsTest: Skip | 23 io/SocketManyConnectionsTest: Skip |
| 24 io/TestExtensionTest: Skip # Extensions not implemented on MacOS | 24 io/TestExtensionTest: Skip # Extensions not implemented on MacOS |
| 25 | 25 |
| 26 [ $component == vm && $system == win32] | 26 [ $component == vm && $system == win32] |
| 27 io/TestExtensionTest: Skip # Extensions not implemented on Windows | 27 io/TestExtensionTest: Skip # Extensions not implemented on Windows |
| 28 io/HttpShutdownTest: Skip # Currently times out on windows |
| 28 | 29 |
| 29 [ $component == dartium ] | 30 [ $component == dartium ] |
| 30 io/*: Skip # Don't run tests using dart:io in the browser | 31 io/*: Skip # Don't run tests using dart:io in the browser |
| 31 | 32 |
| 32 [ $component == dartc || $component == chromium ] | 33 [ $component == dartc || $component == chromium ] |
| 33 *: Skip | 34 *: Skip |
| 34 | 35 |
| 35 [ $component == frog || $component == frogsh || $component == leg || $component
== frogium ] | 36 [ $component == frog || $component == frogsh || $component == leg || $component
== frogium ] |
| 36 *: Skip | 37 *: Skip |
| 37 | 38 |
| 38 | 39 |
| 39 [ $component == frog || $component == frogsh ] | 40 [ $component == frog || $component == frogsh ] |
| 40 *: Skip | 41 *: Skip |
| 41 | 42 |
| 42 | 43 |
| 43 [ $arch == x64 ] | 44 [ $arch == x64 ] |
| 44 MediumIntegerTest: Fail # Issue 1146. | 45 MediumIntegerTest: Fail # Issue 1146. |
| 45 | 46 |
| 46 | 47 |
| 47 [ $arch == arm ] | 48 [ $arch == arm ] |
| 48 *: Skip | 49 *: Skip |
| 49 | 50 |
| 50 | 51 |
| 51 [ $arch == simarm ] | 52 [ $arch == simarm ] |
| 52 *: Skip | 53 *: Skip |
| OLD | NEW |