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 # Pub only runs on the VM, so just rule out all compilers. | 5 # Pub only runs on the VM, so just rule out all compilers. |
6 [ $compiler == dart2js || $compiler == dart2dart || $compiler == dartc ] | 6 [ $compiler == dart2js || $compiler == dart2dart || $compiler == dartc ] |
7 *: Skip | 7 *: Skip |
8 | 8 |
9 # Pub only runs on the standalone VM, not the browser. | 9 # Pub only runs on the standalone VM, not the browser. |
10 [ $runtime == drt || $runtime == dartium || $runtime == opera] | 10 [ $runtime == drt || $runtime == dartium || $runtime == opera] |
11 *: Skip | 11 *: Skip |
12 | 12 |
13 # TODO(nweiz): The "pub lish" tests fail mysteriously on OS X. See issue 6984. | 13 # TODO(nweiz): The "pub lish" tests fail mysteriously on OS X. See issue 6984. |
14 [ $system == macos ] | 14 [ $system == macos ] |
15 pub_lish_test: Fail | 15 pub_lish_test: Fail |
| 16 |
| 17 [ $system == windows ] |
| 18 # TODO(nweiz): The "pub lish" tests fail mysteriously on Windows as well. See |
| 19 # issue 6984. |
| 20 pub_lish_test: Fail |
| 21 |
| 22 # A bunch of tests are timing out on Windows due to their inability to find |
| 23 # 7zip. See issue 6990. |
| 24 install/hosted/check_out_test: Timeout |
| 25 install/hosted/check_out_transitive_test: Timeout |
| 26 install/hosted/do_not_update_on_removed_constraints_test: Timeout |
| 27 install/hosted/remove_removed_dependency_test: Timeout |
| 28 install/hosted/remove_removed_transitive_dependency_test: Timeout |
| 29 install/hosted/resolve_constraints_test: Timeout |
| 30 install/hosted/stay_locked_if_compatible_test: Timeout |
| 31 install/hosted/stay_locked_if_new_is_satisfied_test: Timeout |
| 32 install/hosted/stay_locked_test: Timeout |
| 33 install/hosted/unlock_if_incompatible_test: Timeout |
| 34 install/hosted/unlock_if_new_is_unsatisfied_test: Timeout |
| 35 update/hosted/remove_removed_dependency_test: Timeout |
| 36 update/hosted/remove_removed_transitive_dependency_test: Timeout |
| 37 update/hosted/unlock_dependers_test: Timeout |
| 38 update/hosted/unlock_if_necessary_test: Timeout |
| 39 update/hosted/update_removed_constraints_test: Timeout |
OLD | NEW |