| 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 # Run this test manually to verify that the fixnum library produces | 5 # Run this test manually to verify that the fixnum library produces |
| 6 # the same results as native ints on a set of directed and random inputs. | 6 # the same results as native ints on a set of directed and random inputs. |
| 7 # Skip it when running automated tests because it times out. This | 7 # Skip it when running automated tests because it times out. This |
| 8 # test only makes sense on runtimes that support 64-bit integer | 8 # test only makes sense on runtimes that support 64-bit integer |
| 9 # arithmetic natively, i.e., the VM. | 9 # arithmetic natively, i.e., the VM. |
| 10 fixnum/test/int_64_vm_test: Skip | 10 fixnum/test/int_64_vm_test: Skip |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 # Don't compile tests that use dart:io to JS | 25 # Don't compile tests that use dart:io to JS |
| 26 [ $compiler == dart2js || $compiler == dart2dart ] | 26 [ $compiler == dart2js || $compiler == dart2dart ] |
| 27 http/test/*: Skip | 27 http/test/*: Skip |
| 28 oauth2/test/*: Skip | 28 oauth2/test/*: Skip |
| 29 pathos/test/*: Skip | 29 pathos/test/*: Skip |
| 30 | 30 |
| 31 # Issue 8440 forces us to use pathos in the scheduled_test tests, which would | 31 # Issue 8440 forces us to use pathos in the scheduled_test tests, which would |
| 32 # otherwise be dart2js-compatible. | 32 # otherwise be dart2js-compatible. |
| 33 scheduled_test/test/*: Skip | 33 scheduled_test/test/*: Skip |
| 34 source_maps/test/vlq_test: Fail # A VLQ test checks for large numbers that |
| 35 # overflow in JS (numbers slightly larger than |
| 36 # 32 bits where we do bitwise operations). |
| 34 | 37 |
| 35 # Skip tests that use local file access if we're running in any browser | 38 # Skip tests that use local file access if we're running in any browser |
| 36 [ $runtime == opera || $runtime == ff || $runtime == ie9 || $runtime == dartium
|| $runtime == chrome || $runtime == safari || $runtime == drt || $runtime == j
sshell] | 39 [ $runtime == opera || $runtime == ff || $runtime == ie9 || $runtime == dartium
|| $runtime == chrome || $runtime == safari || $runtime == drt || $runtime == j
sshell] |
| 37 http/test/*: Skip | 40 http/test/*: Skip |
| 38 oauth2/test/*: Skip | 41 oauth2/test/*: Skip |
| 39 pathos/test/*: Skip | 42 pathos/test/*: Skip |
| 40 intl/test/date_time_format_file_even_test: Skip | 43 intl/test/date_time_format_file_even_test: Skip |
| 41 intl/test/date_time_format_file_odd_test: Skip | 44 intl/test/date_time_format_file_odd_test: Skip |
| 42 intl/test/find_default_locale_standalone_test: Skip | 45 intl/test/find_default_locale_standalone_test: Skip |
| 43 intl/test/message_extraction/message_extraction_test: Skip | 46 intl/test/message_extraction/message_extraction_test: Skip |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 *: Skip | 113 *: Skip |
| 111 | 114 |
| 112 [ $arch == simarm ] | 115 [ $arch == simarm ] |
| 113 *: Skip | 116 *: Skip |
| 114 | 117 |
| 115 [ $arch == mips ] | 118 [ $arch == mips ] |
| 116 *: Skip | 119 *: Skip |
| 117 | 120 |
| 118 [ $arch == simmips ] | 121 [ $arch == simmips ] |
| 119 *: Skip | 122 *: Skip |
| OLD | NEW |