| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 http_server/test/*: Fail, OK # Uses dart:io. | 128 http_server/test/*: Fail, OK # Uses dart:io. |
| 129 intl/test/date_time_format_file_even_test: Fail, OK # Uses dart:io. | 129 intl/test/date_time_format_file_even_test: Fail, OK # Uses dart:io. |
| 130 intl/test/date_time_format_file_odd_test: Fail, OK # Uses dart:io. | 130 intl/test/date_time_format_file_odd_test: Fail, OK # Uses dart:io. |
| 131 intl/test/find_default_locale_standalone_test: Fail, OK # Uses dart:io. | 131 intl/test/find_default_locale_standalone_test: Fail, OK # Uses dart:io. |
| 132 intl/test/message_extraction/message_extraction_test: Fail, OK # Uses dart:io. | 132 intl/test/message_extraction/message_extraction_test: Fail, OK # Uses dart:io. |
| 133 oauth2/test/authorization_code_grant_test: Fail, OK # Uses dart:io. | 133 oauth2/test/authorization_code_grant_test: Fail, OK # Uses dart:io. |
| 134 oauth2/test/client_test: Fail, OK # Uses dart:io. | 134 oauth2/test/client_test: Fail, OK # Uses dart:io. |
| 135 oauth2/test/credentials_test: Fail, OK # Uses dart:io. | 135 oauth2/test/credentials_test: Fail, OK # Uses dart:io. |
| 136 oauth2/test/handle_access_token_response_test: Fail, OK # Uses dart:io. | 136 oauth2/test/handle_access_token_response_test: Fail, OK # Uses dart:io. |
| 137 pathos/test/pathos_io_test: Fail, OK # Uses dart:io. | 137 pathos/test/pathos_io_test: Fail, OK # Uses dart:io. |
| 138 stack_trace/test/vm_test: Fail, OK # VM-specific method names. | |
| 139 | 138 |
| 140 scheduled_test/test/descriptor/async_test: Fail # http://dartbug.com/8440 | 139 scheduled_test/test/descriptor/async_test: Fail # http://dartbug.com/8440 |
| 141 scheduled_test/test/descriptor/directory_test: Fail # http://dartbug.com/8440 | 140 scheduled_test/test/descriptor/directory_test: Fail # http://dartbug.com/8440 |
| 142 scheduled_test/test/descriptor/file_test: Fail # http://dartbug.com/8440 | 141 scheduled_test/test/descriptor/file_test: Fail # http://dartbug.com/8440 |
| 143 scheduled_test/test/descriptor/nothing_test: Fail # http://dartbug.com/8440 | 142 scheduled_test/test/descriptor/nothing_test: Fail # http://dartbug.com/8440 |
| 144 scheduled_test/test/descriptor/pattern_test: Fail # http://dartbug.com/8440 | 143 scheduled_test/test/descriptor/pattern_test: Fail # http://dartbug.com/8440 |
| 145 scheduled_test/test/scheduled_future_matchers_test: Fail # http://dartbug.com/84
40 | 144 scheduled_test/test/scheduled_future_matchers_test: Fail # http://dartbug.com/84
40 |
| 146 scheduled_test/test/scheduled_process_test: Fail # http://dartbug.com/8440 | 145 scheduled_test/test/scheduled_process_test: Fail # http://dartbug.com/8440 |
| 147 scheduled_test/test/scheduled_test/abort_test: Fail # http://dartbug.com/8440 | 146 scheduled_test/test/scheduled_test/abort_test: Fail # http://dartbug.com/8440 |
| 148 scheduled_test/test/scheduled_test/current_schedule_current_task_test: Fail # ht
tp://dartbug.com/8440 | 147 scheduled_test/test/scheduled_test/current_schedule_current_task_test: Fail # ht
tp://dartbug.com/8440 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 # test on Dartium, which requires all tests to have a library. | 189 # test on Dartium, which requires all tests to have a library. |
| 191 [ $runtime == dartium || $runtime == drt ] | 190 [ $runtime == dartium || $runtime == drt ] |
| 192 serialization/test/no_library_test: Skip # Expected Failure | 191 serialization/test/no_library_test: Skip # Expected Failure |
| 193 | 192 |
| 194 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 193 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
| 195 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 | 194 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 |
| 196 | 195 |
| 197 # Skip mdv tests on command line VM, they only run in the browser. | 196 # Skip mdv tests on command line VM, they only run in the browser. |
| 198 [ $runtime == vm ] | 197 [ $runtime == vm ] |
| 199 mdv: Skip | 198 mdv: Skip |
| OLD | NEW |