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 19 matching lines...) Expand all Loading... | |
30 http/test/*: Skip | 30 http/test/*: Skip |
31 oauth2/test/*: Skip | 31 oauth2/test/*: Skip |
32 path/test/*: Skip | 32 path/test/*: Skip |
33 intl/test/date_time_format_file_even_test: Skip | 33 intl/test/date_time_format_file_even_test: Skip |
34 intl/test/date_time_format_file_odd_test: Skip | 34 intl/test/date_time_format_file_odd_test: Skip |
35 intl/test/find_default_locale_standalone_test: Skip | 35 intl/test/find_default_locale_standalone_test: Skip |
36 analyzer-experimental/test/options_test: Skip # Imports dart:io. | 36 analyzer-experimental/test/options_test: Skip # Imports dart:io. |
37 analyzer-experimental/test/generated/parser_test: Skip # Imports dart:io. | 37 analyzer-experimental/test/generated/parser_test: Skip # Imports dart:io. |
38 analyzer-experimental/test/generated/scanner_test: Skip # Imports dart:io. | 38 analyzer-experimental/test/generated/scanner_test: Skip # Imports dart:io. |
39 | 39 |
40 # Issue 8440 forces us to use path in the scheduled_test tests, which would | |
41 # otherwise be dart2js-compatible. | |
Emily Fortuna
2013/02/09 02:21:55
when you get a chance, change this comment to expl
| |
42 scheduled_test/test/*: Skip | |
43 | |
40 [ $runtime == opera && $compiler == dart2js ] | 44 [ $runtime == opera && $compiler == dart2js ] |
41 intl/test/find_default_locale_browser_test: Fail | 45 intl/test/find_default_locale_browser_test: Fail |
42 intl/test/date_time_format_http_request_test: Skip # Timeout. | 46 intl/test/date_time_format_http_request_test: Skip # Timeout. |
43 | 47 |
44 # Skip browser-specific Intl tests on VM | 48 # Skip browser-specific Intl tests on VM |
45 [ $runtime == vm ] | 49 [ $runtime == vm ] |
46 intl/test/find_default_locale_browser_test: Skip | 50 intl/test/find_default_locale_browser_test: Skip |
47 intl/test/date_time_format_http_request_test: Skip | 51 intl/test/date_time_format_http_request_test: Skip |
48 | 52 |
49 [ $runtime == vm && $system == windows ] | 53 [ $runtime == vm && $system == windows ] |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
81 *: Skip | 85 *: Skip |
82 | 86 |
83 [ $arch == simarm ] | 87 [ $arch == simarm ] |
84 *: Skip | 88 *: Skip |
85 | 89 |
86 [ $arch == mips ] | 90 [ $arch == mips ] |
87 *: Skip | 91 *: Skip |
88 | 92 |
89 [ $arch == simmips ] | 93 [ $arch == simmips ] |
90 *: Skip | 94 *: Skip |
OLD | NEW |