| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 http_server/test/*: Fail, OK # Uses dart:io. | 125 http_server/test/*: Fail, OK # Uses dart:io. |
| 126 intl/test/date_time_format_file_even_test: Fail, OK # Uses dart:io. | 126 intl/test/date_time_format_file_even_test: Fail, OK # Uses dart:io. |
| 127 intl/test/date_time_format_file_odd_test: Fail, OK # Uses dart:io. | 127 intl/test/date_time_format_file_odd_test: Fail, OK # Uses dart:io. |
| 128 intl/test/find_default_locale_standalone_test: Fail, OK # Uses dart:io. | 128 intl/test/find_default_locale_standalone_test: Fail, OK # Uses dart:io. |
| 129 intl/test/message_extraction/message_extraction_test: Fail, OK # Uses dart:io. | 129 intl/test/message_extraction/message_extraction_test: Fail, OK # Uses dart:io. |
| 130 oauth2/test/authorization_code_grant_test: Fail, OK # Uses dart:io. | 130 oauth2/test/authorization_code_grant_test: Fail, OK # Uses dart:io. |
| 131 oauth2/test/client_test: Fail, OK # Uses dart:io. | 131 oauth2/test/client_test: Fail, OK # Uses dart:io. |
| 132 oauth2/test/credentials_test: Fail, OK # Uses dart:io. | 132 oauth2/test/credentials_test: Fail, OK # Uses dart:io. |
| 133 oauth2/test/handle_access_token_response_test: Fail, OK # Uses dart:io. | 133 oauth2/test/handle_access_token_response_test: Fail, OK # Uses dart:io. |
| 134 path/test/io_test: Fail, OK # Uses dart:io. | 134 path/test/io_test: Fail, OK # Uses dart:io. |
| 135 watcher/test/*: Fail, OK # Uses dart:io. |
| 135 | 136 |
| 136 scheduled_test/test/descriptor/async_test: Fail # http://dartbug.com/8440 | 137 scheduled_test/test/descriptor/async_test: Fail # http://dartbug.com/8440 |
| 137 scheduled_test/test/descriptor/directory_test: Fail # http://dartbug.com/8440 | 138 scheduled_test/test/descriptor/directory_test: Fail # http://dartbug.com/8440 |
| 138 scheduled_test/test/descriptor/file_test: Fail # http://dartbug.com/8440 | 139 scheduled_test/test/descriptor/file_test: Fail # http://dartbug.com/8440 |
| 139 scheduled_test/test/descriptor/nothing_test: Fail # http://dartbug.com/8440 | 140 scheduled_test/test/descriptor/nothing_test: Fail # http://dartbug.com/8440 |
| 140 scheduled_test/test/descriptor/pattern_test: Fail # http://dartbug.com/8440 | 141 scheduled_test/test/descriptor/pattern_test: Fail # http://dartbug.com/8440 |
| 141 scheduled_test/test/scheduled_future_matchers_test: Fail # http://dartbug.com/84
40 | 142 scheduled_test/test/scheduled_future_matchers_test: Fail # http://dartbug.com/84
40 |
| 142 scheduled_test/test/scheduled_process_test: Fail # http://dartbug.com/8440 | 143 scheduled_test/test/scheduled_process_test: Fail # http://dartbug.com/8440 |
| 143 scheduled_test/test/scheduled_test/abort_test: Fail # http://dartbug.com/8440 | 144 scheduled_test/test/scheduled_test/abort_test: Fail # http://dartbug.com/8440 |
| 144 scheduled_test/test/scheduled_test/current_schedule_current_task_test: Fail # ht
tp://dartbug.com/8440 | 145 scheduled_test/test/scheduled_test/current_schedule_current_task_test: Fail # ht
tp://dartbug.com/8440 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 191 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
| 191 path/test/dart2js_test: Fail, OK # Issue 6490 | 192 path/test/dart2js_test: Fail, OK # Issue 6490 |
| 192 | 193 |
| 193 # Skip mdv tests on command line VM, they only run in the browser. | 194 # Skip mdv tests on command line VM, they only run in the browser. |
| 194 [ $runtime == vm ] | 195 [ $runtime == vm ] |
| 195 mdv: Skip | 196 mdv: Skip |
| 196 | 197 |
| 197 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 198 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
| 198 docgen/test/single_library_test: Skip # Uses dart:io | 199 docgen/test/single_library_test: Skip # Uses dart:io |
| 199 | 200 |
| OLD | NEW |