| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 [ $component == vm && $checked ] | 7 [ $component == vm && $checked ] |
| 8 # These tests have type errors on purpose. | 8 # These tests have type errors on purpose. |
| 9 ProcessInvalidArgumentsTest: Fail, OK | 9 ProcessInvalidArgumentsTest: Fail, OK |
| 10 DirectoryInvalidArgumentsTest: Fail, OK | 10 DirectoryInvalidArgumentsTest: Fail, OK |
| 11 FileInvalidArgumentsTest: Fail, OK | 11 FileInvalidArgumentsTest: Fail, OK |
| 12 | 12 |
| 13 [ $component == vm] | 13 [ $component == vm] |
| 14 ManyEchoServerTest: Skip # Bug 5103754 | 14 ManyEchoServerTest: Skip # Bug 5103754 |
| 15 # These tests fail, crash, and timeout to test the testing infrastructure. | 15 # These tests fail, crash, and timeout to test the testing infrastructure. |
| 16 FailTest: Fail | 16 FailTest: Fail |
| 17 TimeoutTest: Timeout | 17 TimeoutTest: Timeout |
| 18 | 18 |
| 19 [ $component == vm && $mode == release] | 19 [ $component == vm && $mode == release] |
| 20 # Currently process tests are bound to debug mode. | 20 # Currently process tests are bound to debug mode. |
| 21 Process*: Skip # Bug 172 | 21 Process*: Skip # Bug 172 |
| 22 | 22 |
| 23 [ $component == vm && $system == macos] | 23 [ $component == vm && $system == macos] |
| 24 Process*: Skip # Bug 172 | 24 Process*: Skip # Bug 172 |
| 25 # This test fails with "Too many open files" on the Mac OS buildbot. | 25 # This test fails with "Too many open files" on the Mac OS buildbot. |
| 26 SocketManyConnectionsTest: Skip | 26 SocketManyConnectionsTest: Skip |
| 27 | 27 |
| 28 [ $component == vm && $system == win32] | 28 [ $component == vm && $system == win32] |
| 29 Process*: Skip # Dart issue 363. | 29 Process*: Skip # Bug 172 |
| 30 TestRunnerTest: Skip # Uses Process. Dart issue 363. | |
| 31 | 30 |
| 32 [ $component == dartium ] | 31 [ $component == dartium ] |
| 33 # Server specific tests OK to fail in the browser | 32 # Server specific tests OK to fail in the browser |
| 34 EchoServerTest: Skip # Uses Socket | 33 EchoServerTest: Skip # Uses Socket |
| 35 EchoServerStreamTest: Skip # Uses Socket | 34 EchoServerStreamTest: Skip # Uses Socket |
| 36 EchoServerStreamReadUntilTest: Skip # Uses Socket | 35 EchoServerStreamReadUntilTest: Skip # Uses Socket |
| 37 ManyEchoServerTest: Skip # Uses Socket | 36 ManyEchoServerTest: Skip # Uses Socket |
| 38 SocketCloseTest: Skip # Uses Socket | 37 SocketCloseTest: Skip # Uses Socket |
| 39 SocketExceptionTest: Skip # Uses Socket | 38 SocketExceptionTest: Skip # Uses Socket |
| 40 SocketManyConnectionsTest: Skip # Uses Socket | 39 SocketManyConnectionsTest: Skip # Uses Socket |
| (...skipping 24 matching lines...) Expand all Loading... |
| 65 [ $arch == x64 ] | 64 [ $arch == x64 ] |
| 66 *: Skip | 65 *: Skip |
| 67 | 66 |
| 68 | 67 |
| 69 [ $arch == arm ] | 68 [ $arch == arm ] |
| 70 *: Skip | 69 *: Skip |
| 71 | 70 |
| 72 | 71 |
| 73 [ $arch == simarm ] | 72 [ $arch == simarm ] |
| 74 *: Skip | 73 *: Skip |
| OLD | NEW |