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 [ $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: Skip # Uses too much time to test on many platforms, for no gain. | 17 TimeoutTest: Skip # Uses too much time to test on many platforms, for no gain. |
18 | 18 |
| 19 # The following test is temporarily skipped because the vm was changed (it |
| 20 # requires to explicitly import dart:isolate), but the binaries in |
| 21 # tools/testing/bin/ have not been updated. Remove once we update them. |
| 22 TestRunnerTest: Skip |
| 23 |
19 [ $component == vm && $system == macos] | 24 [ $component == vm && $system == macos] |
20 # 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. |
21 SocketManyConnectionsTest: Skip | 26 SocketManyConnectionsTest: Skip |
22 | 27 |
23 [ $component == dartium ] | 28 [ $component == dartium ] |
24 # Server specific tests OK to fail in the browser | 29 # Server specific tests OK to fail in the browser |
25 EchoServerTest: Skip # Uses Socket | 30 EchoServerTest: Skip # Uses Socket |
26 EchoServerStreamTest: Skip # Uses Socket | 31 EchoServerStreamTest: Skip # Uses Socket |
27 EchoServerStreamReadUntilTest: Skip # Uses Socket | 32 EchoServerStreamReadUntilTest: Skip # Uses Socket |
28 ManyEchoServerTest: Skip # Uses Socket | 33 ManyEchoServerTest: Skip # Uses Socket |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 [ $arch == x64 ] | 76 [ $arch == x64 ] |
72 MediumIntegerTest: Fail # Issue 1146. | 77 MediumIntegerTest: Fail # Issue 1146. |
73 | 78 |
74 | 79 |
75 [ $arch == arm ] | 80 [ $arch == arm ] |
76 *: Skip | 81 *: Skip |
77 | 82 |
78 | 83 |
79 [ $arch == simarm ] | 84 [ $arch == simarm ] |
80 *: Skip | 85 *: Skip |
OLD | NEW |