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 TestExtensionTest: Fail # shared library in wrong place (issue 1817) |
18 | 19 |
19 [ $component == vm && $system == macos] | 20 [ $component == vm && $system == macos] |
20 # This test fails with "Too many open files" on the Mac OS buildbot. | 21 # This test fails with "Too many open files" on the Mac OS buildbot. |
21 SocketManyConnectionsTest: Skip | 22 SocketManyConnectionsTest: Skip |
| 23 TestExtensionTest: Skip # Extensions not implemented on MacOS |
| 24 |
| 25 [ $component == vm && $system == win32] |
| 26 TestExtensionTest: Skip # Extensions not implemented on Windows |
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 |
29 SocketCloseTest: Skip # Uses Socket | 34 SocketCloseTest: Skip # Uses Socket |
30 SocketExceptionTest: Skip # Uses Socket | 35 SocketExceptionTest: Skip # Uses Socket |
31 SocketManyConnectionsTest: Skip # Uses Socket | 36 SocketManyConnectionsTest: Skip # Uses Socket |
(...skipping 17 matching lines...) Expand all Loading... |
49 StatusFileParserTest: Skip # Uses FileInputStream | 54 StatusFileParserTest: Skip # Uses FileInputStream |
50 OptionsTest: Skip # Expects options being passed from command line. | 55 OptionsTest: Skip # Expects options being passed from command line. |
51 FailTest: Fail # Fails intentionally | 56 FailTest: Fail # Fails intentionally |
52 TimeoutTest: Skip # Uses Socket | 57 TimeoutTest: Skip # Uses Socket |
53 TestRunnerTest: Skip # Uses Process | 58 TestRunnerTest: Skip # Uses Process |
54 FileInvalidArgumentsTest: Skip # Uses File | 59 FileInvalidArgumentsTest: Skip # Uses File |
55 PlatformTest: Skip # Uses Platform | 60 PlatformTest: Skip # Uses Platform |
56 ChunkedStreamTest: Skip # Uses InputStream | 61 ChunkedStreamTest: Skip # Uses InputStream |
57 DartStdIOPipeTest: Skip # Uses dart:io | 62 DartStdIOPipeTest: Skip # Uses dart:io |
58 FileOutputStreamTest: Skip # Uses dart:io | 63 FileOutputStreamTest: Skip # Uses dart:io |
| 64 TestExtensionTest: Skip # Extensions implemented only in Dart shell. |
59 | 65 |
60 [ $component == dartc || $component == chromium ] | 66 [ $component == dartc || $component == chromium ] |
61 *: Skip | 67 *: Skip |
62 | 68 |
63 [ $component == frog || $component == frogsh || $component == leg || $component
== frogium ] | 69 [ $component == frog || $component == frogsh || $component == leg || $component
== frogium ] |
64 *: Skip | 70 *: Skip |
65 | 71 |
66 | 72 |
67 [ $component == frog || $component == frogsh ] | 73 [ $component == frog || $component == frogsh ] |
68 *: Skip | 74 *: Skip |
69 | 75 |
70 | 76 |
71 [ $arch == x64 ] | 77 [ $arch == x64 ] |
72 MediumIntegerTest: Fail # Issue 1146. | 78 MediumIntegerTest: Fail # Issue 1146. |
73 | 79 |
74 | 80 |
75 [ $arch == arm ] | 81 [ $arch == arm ] |
76 *: Skip | 82 *: Skip |
77 | 83 |
78 | 84 |
79 [ $arch == simarm ] | 85 [ $arch == simarm ] |
80 *: Skip | 86 *: Skip |
OLD | NEW |