| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 (function() { | 5 (function() { |
| 6 'use strict'; | 6 'use strict'; |
| 7 | 7 |
| 8 let dart_sdk = dart_library.import('dart_sdk'); | 8 let dart_sdk = dart_library.import('dart_sdk'); |
| 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); | 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); |
| 10 let async_helper = dart_library.import('async_helper').async_helper; | 10 let async_helper = dart_library.import('async_helper').async_helper; |
| (...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 'const_list_remove_range_test': fail, | 389 'const_list_remove_range_test': fail, |
| 390 'const_list_set_range_test': fail, | 390 'const_list_set_range_test': fail, |
| 391 'data_uri_test': fail, | 391 'data_uri_test': fail, |
| 392 'date_time4_test': fail, | 392 'date_time4_test': fail, |
| 393 'date_time_parse_test': fail, | 393 'date_time_parse_test': fail, |
| 394 'date_time_test': fail, | 394 'date_time_test': fail, |
| 395 'double_parse_test_01_multi': fail, | 395 'double_parse_test_01_multi': fail, |
| 396 'error_stack_trace1_test': fail, | 396 'error_stack_trace1_test': fail, |
| 397 'error_stack_trace2_test': fail, | 397 'error_stack_trace2_test': fail, |
| 398 'file_resource_test': skip_fail, // crashes during import load. | 398 'file_resource_test': skip_fail, // crashes during import load. |
| 399 'format_exception_test': fail, | |
| 400 'from_environment_const_type_test_01_multi': skip_fail, // constructor th
rows | 399 'from_environment_const_type_test_01_multi': skip_fail, // constructor th
rows |
| 401 'from_environment_const_type_test_05_multi': skip_fail, // constructor th
rows | 400 'from_environment_const_type_test_05_multi': skip_fail, // constructor th
rows |
| 402 'from_environment_const_type_test_10_multi': skip_fail, // constructor th
rows | 401 'from_environment_const_type_test_10_multi': skip_fail, // constructor th
rows |
| 403 'from_environment_const_type_test_15_multi': skip_fail, // constructor th
rows | 402 'from_environment_const_type_test_15_multi': skip_fail, // constructor th
rows |
| 404 'from_environment_const_type_test_none_multi': skip_fail, // constructor
throws | 403 'from_environment_const_type_test_none_multi': skip_fail, // constructor
throws |
| 405 'from_environment_const_type_undefined_test_01_multi': skip_fail, // cons
tructor throws | 404 'from_environment_const_type_undefined_test_01_multi': skip_fail, // cons
tructor throws |
| 406 'from_environment_const_type_undefined_test_05_multi': skip_fail, // cons
tructor throws | 405 'from_environment_const_type_undefined_test_05_multi': skip_fail, // cons
tructor throws |
| 407 'from_environment_const_type_undefined_test_10_multi': skip_fail, // cons
tructor throws | 406 'from_environment_const_type_undefined_test_10_multi': skip_fail, // cons
tructor throws |
| 408 'from_environment_const_type_undefined_test_15_multi': skip_fail, // cons
tructor throws | 407 'from_environment_const_type_undefined_test_15_multi': skip_fail, // cons
tructor throws |
| 409 'from_environment_const_type_undefined_test_none_multi': skip_fail, // co
nstructor throws | 408 'from_environment_const_type_undefined_test_none_multi': skip_fail, // co
nstructor throws |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 | 543 |
| 545 if (!async_helper.asyncTestStarted) done(); | 544 if (!async_helper.asyncTestStarted) done(); |
| 546 }); | 545 }); |
| 547 } | 546 } |
| 548 } | 547 } |
| 549 | 548 |
| 550 for (let action of unittest_tests) { | 549 for (let action of unittest_tests) { |
| 551 action(); | 550 action(); |
| 552 } | 551 } |
| 553 })(); | 552 })(); |
| OLD | NEW |