| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 source_maps/test/vlq_test: Fail # A VLQ test checks for large numbers that | 45 source_maps/test/vlq_test: Fail # A VLQ test checks for large numbers that |
| 46 # overflow in JS (numbers slightly larger than | 46 # overflow in JS (numbers slightly larger than |
| 47 # 32 bits where we do bitwise operations). | 47 # 32 bits where we do bitwise operations). |
| 48 | 48 |
| 49 [ $runtime == opera && $compiler == dart2js ] | 49 [ $runtime == opera && $compiler == dart2js ] |
| 50 intl/test/find_default_locale_browser_test: Fail | 50 intl/test/find_default_locale_browser_test: Fail |
| 51 intl/test/date_time_format_http_request_test: Skip # Timeout. | 51 intl/test/date_time_format_http_request_test: Skip # Timeout. |
| 52 | 52 |
| 53 [ $runtime == ie9 ] | 53 [ $runtime == ie9 ] |
| 54 intl/test/date_time_format_http_request_test: Fail # Issue 8983 | 54 intl/test/date_time_format_http_request_test: Fail # Issue 8983 |
| 55 mime/test/mime_multipart_transformer_test: Skip # No typed_data on IE9. |
| 55 | 56 |
| 56 [ $runtime == safari ] | 57 [ $runtime == safari ] |
| 57 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. | 58 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. |
| 58 crypto/test/hmac_sha1_test: Fail # Issue 11407. | 59 crypto/test/hmac_sha1_test: Fail # Issue 11407. |
| 59 crypto/test/sha1_test: Fail # Issue 11407. | 60 crypto/test/sha1_test: Fail # Issue 11407. |
| 60 | 61 |
| 61 # Skip browser-specific tests on VM | 62 # Skip browser-specific tests on VM |
| 62 [ $runtime == vm ] | 63 [ $runtime == vm ] |
| 63 docgen/test/single_library_test: Skip # Uses js_helper | 64 docgen/test/single_library_test: Skip # Uses js_helper |
| 64 path/test/dartium_test: Fail, OK # Uses dart:html | 65 path/test/dartium_test: Fail, OK # Uses dart:html |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 192 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
| 192 path/test/dart2js_test: Fail, OK # Issue 6490 | 193 path/test/dart2js_test: Fail, OK # Issue 6490 |
| 193 | 194 |
| 194 # Skip mdv tests on command line VM, they only run in the browser. | 195 # Skip mdv tests on command line VM, they only run in the browser. |
| 195 [ $runtime == vm ] | 196 [ $runtime == vm ] |
| 196 mdv: Skip | 197 mdv: Skip |
| 197 | 198 |
| 198 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 199 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
| 199 docgen/test/single_library_test: Skip # Uses dart:io | 200 docgen/test/single_library_test: Skip # Uses dart:io |
| 200 | 201 |
| OLD | NEW |