| 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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 'map_keys2_test': fail, | 434 'map_keys2_test': fail, |
| 435 'map_to_string_test': fail, | 435 'map_to_string_test': fail, |
| 436 'nan_infinity_test_01_multi': fail, | 436 'nan_infinity_test_01_multi': fail, |
| 437 'null_nosuchmethod_test': fail, | 437 'null_nosuchmethod_test': fail, |
| 438 'null_test': fail, | 438 'null_test': fail, |
| 439 'num_sign_test': fail, | 439 'num_sign_test': fail, |
| 440 'queue_test': fail, | 440 'queue_test': fail, |
| 441 'regress_r21715_test': fail, | 441 'regress_r21715_test': fail, |
| 442 'throw_half_surrogate_pair_test_02_multi': fail, | 442 'throw_half_surrogate_pair_test_02_multi': fail, |
| 443 'stacktrace_current_test': fail, | 443 'stacktrace_current_test': fail, |
| 444 'stacktrace_fromstring_test': fail, | |
| 445 'string_from_environment2_test': fail, | 444 'string_from_environment2_test': fail, |
| 446 'string_from_environment_test': fail, | 445 'string_from_environment_test': fail, |
| 447 'string_from_list_test': skip_timeout, | 446 'string_from_list_test': skip_timeout, |
| 448 'string_fromcharcodes_test': skip_timeout, | 447 'string_fromcharcodes_test': skip_timeout, |
| 449 'string_operations_with_null_test': fail, | 448 'string_operations_with_null_test': fail, |
| 450 'symbol_reserved_word_test_06_multi': fail, | 449 'symbol_reserved_word_test_06_multi': fail, |
| 451 'symbol_reserved_word_test_09_multi': fail, | 450 'symbol_reserved_word_test_09_multi': fail, |
| 452 'symbol_reserved_word_test_12_multi': fail, | 451 'symbol_reserved_word_test_12_multi': fail, |
| 453 'throw_half_surrogate_pair_test_01_multi': fail, | 452 'throw_half_surrogate_pair_test_01_multi': fail, |
| 454 // TODO(rnystrom): Times out because it tests a huge number of | 453 // TODO(rnystrom): Times out because it tests a huge number of |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 797 | 796 |
| 798 for (let action of unittest_tests) { | 797 for (let action of unittest_tests) { |
| 799 try { | 798 try { |
| 800 action(); | 799 action(); |
| 801 } catch (e) { | 800 } catch (e) { |
| 802 console.error("Caught error tying to setup test:", e); | 801 console.error("Caught error tying to setup test:", e); |
| 803 } | 802 } |
| 804 } | 803 } |
| 805 }); | 804 }); |
| 806 })(); | 805 })(); |
| OLD | NEW |