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 # Requires test_extension library in current directory. | |
Mads Ager (google)
2012/02/23 09:26:56
The test is disabled everywhere at this point. Thi
| |
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 == windows] | |
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 16 matching lines...) Expand all Loading... | |
48 StringStreamTest: Skip # Uses InputStream | 53 StringStreamTest: Skip # Uses InputStream |
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 |
63 TestExtensionTest: Skip # Extensions implemented only in Dart shell. | |
58 | 64 |
59 [ $component == dartc || $component == chromium ] | 65 [ $component == dartc || $component == chromium ] |
60 *: Skip | 66 *: Skip |
61 | 67 |
62 [ $component == frog || $component == frogsh || $component == leg || $component == frogium ] | 68 [ $component == frog || $component == frogsh || $component == leg || $component == frogium ] |
63 *: Skip | 69 *: Skip |
64 | 70 |
65 | 71 |
66 [ $component == frog || $component == frogsh ] | 72 [ $component == frog || $component == frogsh ] |
67 *: Skip | 73 *: Skip |
68 | 74 |
69 | 75 |
70 [ $arch == x64 ] | 76 [ $arch == x64 ] |
71 MediumIntegerTest: Fail # Issue 1146. | 77 MediumIntegerTest: Fail # Issue 1146. |
72 | 78 |
73 | 79 |
74 [ $arch == arm ] | 80 [ $arch == arm ] |
75 *: Skip | 81 *: Skip |
76 | 82 |
77 | 83 |
78 [ $arch == simarm ] | 84 [ $arch == simarm ] |
79 *: Skip | 85 *: Skip |
OLD | NEW |