| OLD | NEW |
| 1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Fletch 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.md file. | 3 # BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 self/testAlwaysFails: Fail, OK # This is a test of this suite, failure is expect
ed. | 5 self/testAlwaysFails: Fail, OK # This is a test of this suite, failure is expect
ed. |
| 6 zone_helper/testAlwaysFails: Fail, OK # This is a test of this suite, failure is
expected. | 6 zone_helper/testAlwaysFails: Fail, OK # This is a test of this suite, failure is
expected. |
| 7 self/testNeverCompletes: Timeout # This is a test of this suite, timeout is expe
cted. | 7 self/testNeverCompletes: Timeout # This is a test of this suite, timeout is expe
cted. |
| 8 | 8 |
| 9 # Stored closures not updated | 9 # Stored closures not updated |
| 10 incremental/stored_closure: Fail | 10 incremental/stored_closure: Fail |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 # Old servicec backend fails on these tests; Issue 235 | 42 # Old servicec backend fails on these tests; Issue 235 |
| 43 servicec/good_type_parameter_1: Fail | 43 servicec/good_type_parameter_1: Fail |
| 44 | 44 |
| 45 [ $arch != ia32 && $arch != x64 ] | 45 [ $arch != ia32 && $arch != x64 ] |
| 46 | 46 |
| 47 service_tests/*: Skip | 47 service_tests/*: Skip |
| 48 | 48 |
| 49 [ $system == macos && $arch == x64 ] | 49 [ $system == macos && $arch == x64 ] |
| 50 | 50 |
| 51 service_tests/performance: Fail, Pass # Issue 111 | 51 service_tests/performance: Fail, Pass # Issue 111 |
| 52 |
| 53 [ $arch == arm ] |
| 54 |
| 55 mdns/validate_extension: Skip # The native extension is not compiled for ARM. |
| OLD | NEW |