| 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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 'hash_set_test_01_multi': fail, | 409 'hash_set_test_01_multi': fail, |
| 410 'hidden_library2_test_01_multi': fail, | 410 'hidden_library2_test_01_multi': fail, |
| 411 'indexed_list_access_test': fail, | 411 'indexed_list_access_test': fail, |
| 412 'int_from_environment2_test': fail, | 412 'int_from_environment2_test': fail, |
| 413 'int_from_environment_test': fail, | 413 'int_from_environment_test': fail, |
| 414 'int_modulo_arith_test_bignum_multi': fail, | 414 'int_modulo_arith_test_bignum_multi': fail, |
| 415 'int_modulo_arith_test_modPow_multi': fail, | 415 'int_modulo_arith_test_modPow_multi': fail, |
| 416 'int_modulo_arith_test_none_multi': fail, | 416 'int_modulo_arith_test_none_multi': fail, |
| 417 'integer_to_radix_string_test': fail, | 417 'integer_to_radix_string_test': fail, |
| 418 'integer_to_string_test_01_multi': fail, | 418 'integer_to_string_test_01_multi': fail, |
| 419 'iterable_empty_test': fail, | |
| 420 'iterable_generate_test': fail, | 419 'iterable_generate_test': fail, |
| 421 'iterable_return_type_test_01_multi': fail, | 420 'iterable_return_type_test_01_multi': fail, |
| 422 'iterable_return_type_test_02_multi': fail, | 421 'iterable_return_type_test_02_multi': fail, |
| 423 'iterable_return_type_test_none_multi': fail, | 422 'iterable_return_type_test_none_multi': fail, |
| 424 'json_map_test': fail, | 423 'json_map_test': fail, |
| 425 'list_fill_range_test': fail, | 424 'list_fill_range_test': fail, |
| 426 'list_replace_range_test': fail, | 425 'list_replace_range_test': fail, |
| 427 'list_set_all_test': fail, | 426 'list_set_all_test': fail, |
| 428 'list_to_string2_test': fail, | 427 'list_to_string2_test': fail, |
| 429 'list_to_string_test': fail, | 428 'list_to_string_test': fail, |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 | 532 |
| 534 if (!async_helper.asyncTestStarted) done(); | 533 if (!async_helper.asyncTestStarted) done(); |
| 535 }); | 534 }); |
| 536 } | 535 } |
| 537 } | 536 } |
| 538 | 537 |
| 539 for (let action of unittest_tests) { | 538 for (let action of unittest_tests) { |
| 540 action(); | 539 action(); |
| 541 } | 540 } |
| 542 })(); | 541 })(); |
| OLD | NEW |