| 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 | 11 |
| 12 [ $component == vm] | 12 [ $component == vm] |
| 13 ManyEchoServerTest: Skip # Bug 5103754 | 13 ManyEchoServerTest: Skip # Bug 5103754 |
| 14 # These tests fail, crash, and timeout to test the testing infrastructure. |
| 15 FailTest: Fail |
| 16 TimeoutTest: Timeout |
| 14 | 17 |
| 15 [ $component == vm && $mode == release] | 18 [ $component == vm && $mode == release] |
| 16 # Currently process tests are bound to debug mode. | 19 # Currently process tests are bound to debug mode. |
| 17 Process*: Skip # Bug 172 | 20 Process*: Skip # Bug 172 |
| 18 | 21 |
| 19 [ $component == vm && $system == macos] | 22 [ $component == vm && $system == macos] |
| 20 Process*: Skip # Bug 172 | 23 Process*: Skip # Bug 172 |
| 21 # This test fails with "Too many open files" on the Mac OS buildbot. | 24 # This test fails with "Too many open files" on the Mac OS buildbot. |
| 22 SocketManyConnectionsTest: Skip | 25 SocketManyConnectionsTest: Skip |
| 23 | 26 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 40 MultipleTimerTest: Skip # Uses EventHandler | 43 MultipleTimerTest: Skip # Uses EventHandler |
| 41 TimerCancelTest: Skip # Uses EventHandler | 44 TimerCancelTest: Skip # Uses EventHandler |
| 42 TimerCancel1Test: Skip # Uses EventHandler | 45 TimerCancel1Test: Skip # Uses EventHandler |
| 43 TimerCancel2Test: Skip # Uses EventHandler | 46 TimerCancel2Test: Skip # Uses EventHandler |
| 44 FileInputStreamTest: Skip # Uses TextFileInputStream. | 47 FileInputStreamTest: Skip # Uses TextFileInputStream. |
| 45 Process*: Skip # Uses Process | 48 Process*: Skip # Uses Process |
| 46 Directory*: Skip # Uses Directory | 49 Directory*: Skip # Uses Directory |
| 47 StringStreamTest: Skip # Uses InputStream | 50 StringStreamTest: Skip # Uses InputStream |
| 48 StatusFileParserTest: Skip # Uses FileInputStream | 51 StatusFileParserTest: Skip # Uses FileInputStream |
| 49 OptionsTest: Skip # Expects options being passed from command line. | 52 OptionsTest: Skip # Expects options being passed from command line. |
| 53 FailTest: Fail # Fails intentionally |
| 54 TimeoutTest: Skip # Uses Socket |
| 55 TestRunnerTest: Skip # Uses Process |
| 50 | 56 |
| 51 [ $component == dartc || $component == chromium ] | 57 [ $component == dartc || $component == chromium ] |
| 52 *: Skip | 58 *: Skip |
| 53 | 59 |
| 54 | 60 |
| 55 [ $arch == x64 ] | 61 [ $arch == x64 ] |
| 56 *: Skip | 62 *: Skip |
| 57 | 63 |
| 58 | 64 |
| 59 [ $arch == arm ] | 65 [ $arch == arm ] |
| 60 *: Skip | 66 *: Skip |
| 61 | 67 |
| 62 | 68 |
| 63 [ $arch == simarm ] | 69 [ $arch == simarm ] |
| 64 *: Skip | 70 *: Skip |
| OLD | NEW |