| 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] | |
| 20 # Currently process tests are bound to debug mode. | |
| 21 Process*: Skip # Bug 172 | |
| 22 | |
| 23 [ $component == vm && $system == macos] | 19 [ $component == vm && $system == macos] |
| 24 Process*: Skip # Bug 172 | |
| 25 # This test fails with "Too many open files" on the Mac OS buildbot. | 20 # This test fails with "Too many open files" on the Mac OS buildbot. |
| 26 SocketManyConnectionsTest: Skip | 21 SocketManyConnectionsTest: Skip |
| 27 | 22 |
| 28 [ $component == vm && $system == win32] | 23 [ $component == vm && $system == win32] |
| 29 Process*: Skip # Dart issue 363. | |
| 30 TestRunnerTest: Skip # Uses Process. Dart issue 363. | 24 TestRunnerTest: Skip # Uses Process. Dart issue 363. |
| 31 | 25 |
| 32 [ $component == dartium ] | 26 [ $component == dartium ] |
| 33 # Server specific tests OK to fail in the browser | 27 # Server specific tests OK to fail in the browser |
| 34 EchoServerTest: Skip # Uses Socket | 28 EchoServerTest: Skip # Uses Socket |
| 35 EchoServerStreamTest: Skip # Uses Socket | 29 EchoServerStreamTest: Skip # Uses Socket |
| 36 EchoServerStreamReadUntilTest: Skip # Uses Socket | 30 EchoServerStreamReadUntilTest: Skip # Uses Socket |
| 37 ManyEchoServerTest: Skip # Uses Socket | 31 ManyEchoServerTest: Skip # Uses Socket |
| 38 SocketCloseTest: Skip # Uses Socket | 32 SocketCloseTest: Skip # Uses Socket |
| 39 SocketExceptionTest: Skip # Uses Socket | 33 SocketExceptionTest: Skip # Uses Socket |
| (...skipping 25 matching lines...) Expand all Loading... |
| 65 [ $arch == x64 ] | 59 [ $arch == x64 ] |
| 66 *: Skip | 60 *: Skip |
| 67 | 61 |
| 68 | 62 |
| 69 [ $arch == arm ] | 63 [ $arch == arm ] |
| 70 *: Skip | 64 *: Skip |
| 71 | 65 |
| 72 | 66 |
| 73 [ $arch == simarm ] | 67 [ $arch == simarm ] |
| 74 *: Skip | 68 *: Skip |
| OLD | NEW |