Chromium Code Reviews| 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 [ $arch == ia32 && $checked ] | |
|
Bill Hesse
2011/10/26 14:18:17
Can you write $checked == true? The alternative i
Mads Ager (google)
2011/10/26 14:23:37
No, that does not work. Feel free to take over and
| |
| 8 # This test has type errors on purpose. | |
| 9 ProcessInvalidArgumentsTest: Fail, OK | |
| 10 | |
| 7 [ $arch == ia32] | 11 [ $arch == ia32] |
| 8 ManyEchoServerTest: Skip # Bug 5103754 | 12 ManyEchoServerTest: Skip # Bug 5103754 |
| 9 | 13 |
| 10 BlackListedTest/01: Fail # Bug 5469684 | 14 BlackListedTest/01: Fail # Bug 5469684 |
| 11 BlackListedTest/02: Fail # Bug 5469684 | 15 BlackListedTest/02: Fail # Bug 5469684 |
| 12 BlackListedTest/03: Fail, Crash # Bug 5469684 | 16 BlackListedTest/03: Fail, Crash # Bug 5469684 |
| 13 BlackListedTest/04: Fail, Crash # Bug 5469684 | 17 BlackListedTest/04: Fail, Crash # Bug 5469684 |
| 14 BlackListedTest/05: Fail # Bug 5469684 | 18 BlackListedTest/05: Fail # Bug 5469684 |
| 15 BlackListedTest/06: Fail # Bug 5469684 | 19 BlackListedTest/06: Fail # Bug 5469684 |
| 16 BlackListedTest/07: Fail, Crash # Bug 5469684 | 20 BlackListedTest/07: Fail, Crash # Bug 5469684 |
| 17 BlackListedTest/08: Fail # Bug 5469684 | 21 BlackListedTest/08: Fail # Bug 5469684 |
| 18 BlackListedTest/09: Fail, Crash # Bug 5469684 | 22 BlackListedTest/09: Fail, Crash # Bug 5469684 |
| 19 BlackListedTest/10: Fail, Crash # Bug 5469684 | 23 BlackListedTest/10: Fail, Crash # Bug 5469684 |
| 20 BlackListedTest/11: Fail, Crash # Bug 5469684 | 24 BlackListedTest/11: Fail, Crash # Bug 5469684 |
| 21 BlackListedTest/12: Fail, Crash # Bug 5469684 | 25 BlackListedTest/12: Fail, Crash # Bug 5469684 |
| 22 | 26 |
| 23 [ $arch == ia32 ] | |
| 24 # Skip this test for now because it has type mismatches on purpose. | |
| 25 # We need to disable it for checked tests only. | |
| 26 ProcessInvalidArgumentsTest: Skip | |
| 27 | |
| 28 [ $arch == ia32 && $mode == release] | 27 [ $arch == ia32 && $mode == release] |
| 29 # Currently process tests are bound to debug mode. | 28 # Currently process tests are bound to debug mode. |
| 30 Process*: Skip | 29 Process*: Skip # Bug 172 |
| 31 | 30 |
| 32 [ $arch == ia32 && $system == macos] | 31 [ $arch == ia32 && $system == macos] |
| 33 # Currently process tests are not working on Mac OS. | 32 Process*: Skip # Bug 172 |
| 34 Process*: Skip | |
| 35 # This test fails with "Too many open files" on the Mac OS buildbot. | 33 # This test fails with "Too many open files" on the Mac OS buildbot. |
| 36 SocketManyConnectionsTest: Skip | 34 SocketManyConnectionsTest: Skip |
| 37 | 35 |
| 38 [ $arch == ia32 && $system == win32] | 36 [ $arch == ia32 && $system == win32] |
| 39 # Windows implementation of Process is still pending. | |
| 40 Process*: Skip | 37 Process*: Skip |
| 41 | 38 |
| 42 | |
| 43 [ $arch == dartium ] | 39 [ $arch == dartium ] |
| 44 # Server specific tests OK to fail in the browser | 40 # Server specific tests OK to fail in the browser |
| 45 EchoServerTest: Skip # Uses Socket | 41 EchoServerTest: Skip # Uses Socket |
| 46 EchoServerStreamTest: Skip # Uses Socket | 42 EchoServerStreamTest: Skip # Uses Socket |
| 47 EchoServerStreamReadUntilTest: Skip # Uses Socket | 43 EchoServerStreamReadUntilTest: Skip # Uses Socket |
| 48 ManyEchoServerTest: Skip # Uses Socket | 44 ManyEchoServerTest: Skip # Uses Socket |
| 49 SocketCloseTest: Skip # Uses Socket | 45 SocketCloseTest: Skip # Uses Socket |
| 50 SocketExceptionTest: Skip # Uses Socket | 46 SocketExceptionTest: Skip # Uses Socket |
| 51 SocketManyConnectionsTest: Skip # Uses Socket | 47 SocketManyConnectionsTest: Skip # Uses Socket |
| 52 FileTest: Skip | 48 FileTest: Skip |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 69 [ $arch == x64 ] | 65 [ $arch == x64 ] |
| 70 *: Skip | 66 *: Skip |
| 71 | 67 |
| 72 | 68 |
| 73 [ $arch == arm ] | 69 [ $arch == arm ] |
| 74 *: Skip | 70 *: Skip |
| 75 | 71 |
| 76 | 72 |
| 77 [ $arch == simarm ] | 73 [ $arch == simarm ] |
| 78 *: Skip | 74 *: Skip |
| OLD | NEW |