Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: test/browser/language_tests.js

Issue 1978613003: A few more tests pass (Closed) Base URL: https://github.com/dart-lang/dev_compiler@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'async_star_test_none_multi': ['unittest', 'skip', 'fail'], 50 'async_star_test_none_multi': ['unittest', 'skip', 'fail'],
51 'async_star_test_01_multi': ['unittest', 'skip', 'fail'], 51 'async_star_test_01_multi': ['unittest', 'skip', 'fail'],
52 'async_star_test_02_multi': ['unittest', 'skip', 'fail'], 52 'async_star_test_02_multi': ['unittest', 'skip', 'fail'],
53 'async_star_test_03_multi': ['unittest', 'skip', 'fail'], 53 'async_star_test_03_multi': ['unittest', 'skip', 'fail'],
54 'async_star_test_04_multi': ['unittest', 'skip', 'fail'], 54 'async_star_test_04_multi': ['unittest', 'skip', 'fail'],
55 'async_star_test_05_multi': ['unittest', 'skip', 'fail'], 55 'async_star_test_05_multi': ['unittest', 'skip', 'fail'],
56 56
57 'async_switch_test': skip_fail, 57 'async_switch_test': skip_fail,
58 'asyncstar_throw_in_catch_test': skip_fail, 58 'asyncstar_throw_in_catch_test': skip_fail,
59 'await_future_test': skip_fail, 59 'await_future_test': skip_fail,
60 'bit_operations_test_none_multi': skip_fail, 60 'bit_operations_test_none_multi': skip_fail, // DDC/dart2js canonicalize bitop results to unsigned
61 'bit_shift_test': skip_fail,
62 'bool_test': skip_fail, 61 'bool_test': skip_fail,
63 'bound_closure_equality_test': skip_fail, 62 'bound_closure_equality_test': skip_fail,
64 'branch_canonicalization_test': skip_fail, // JS bit operations truncate to 32 bits. 63 'branch_canonicalization_test': skip_fail, // JS bit operations truncate to 32 bits.
65 'call_closurization_test': skip_fail, 64 'call_closurization_test': skip_fail,
66 'call_function_apply_test': skip_fail, 65 'call_function_apply_test': skip_fail,
67 'call_operator_test': skip_fail, 66 'call_operator_test': skip_fail,
68 'call_property_test': skip_fail, 67 'call_property_test': skip_fail,
69 'call_test': skip_fail, 68 'call_test': skip_fail,
70 'call_this_test': skip_fail, 69 'call_this_test': skip_fail,
71 'call_through_null_getter_test': skip_fail, 70 'call_through_null_getter_test': skip_fail,
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 'namer2_test': skip_fail, 279 'namer2_test': skip_fail,
281 'nan_identical_test': skip_fail, 280 'nan_identical_test': skip_fail,
282 'nested_switch_label_test': skip_fail, 281 'nested_switch_label_test': skip_fail,
283 'no_such_method3_test': skip_fail, 282 'no_such_method3_test': skip_fail,
284 'no_such_method_empty_selector_test': skip_fail, 283 'no_such_method_empty_selector_test': skip_fail,
285 'no_such_method_subtype_test': skip_fail, 284 'no_such_method_subtype_test': skip_fail,
286 'null_no_such_method_test': skip_fail, 285 'null_no_such_method_test': skip_fail,
287 'number_identifier_test_05_multi': skip_fail, 286 'number_identifier_test_05_multi': skip_fail,
288 'number_identity2_test': skip_fail, 287 'number_identity2_test': skip_fail,
289 'numbers_test': skip_fail, 288 'numbers_test': skip_fail,
290 'operator4_test': skip_fail, 289 'operator4_test': skip_fail, // CastError instead of TypeError
291 'operator_test': skip_fail,
292 'optimized_hoisting_checked_mode_assert_test': skip_fail, 290 'optimized_hoisting_checked_mode_assert_test': skip_fail,
293 'positive_bit_operations_test': skip_fail,
294 'prefix_test1': skip_fail,
295 'prefix_test2': skip_fail,
296 'redirecting_factory_reflection_test': skip_fail, 291 'redirecting_factory_reflection_test': skip_fail,
297 'regress_13462_0_test': skip_fail, 292 'regress_13462_0_test': skip_fail,
298 'regress_13462_1_test': skip_fail, 293 'regress_13462_1_test': skip_fail,
299 'regress_14105_test': skip_fail, 294 'regress_14105_test': skip_fail,
300 'regress_16640_test': skip_fail, 295 'regress_16640_test': skip_fail,
301 'regress_18535_test': skip_fail, 296 'regress_18535_test': skip_fail,
302 'regress_21795_test': skip_fail, 297 'regress_21795_test': skip_fail,
303 'regress_22443_test': skip_fail, 298 'regress_22443_test': skip_fail,
304 'regress_22666_test': skip_fail, 299 'regress_22666_test': skip_fail,
305 'regress_22719_test': skip_fail, 300 'regress_22719_test': skip_fail,
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 813
819 for (let action of unittest_tests) { 814 for (let action of unittest_tests) {
820 try { 815 try {
821 action(); 816 action();
822 } catch (e) { 817 } catch (e) {
823 console.error("Caught error tying to setup test:", e); 818 console.error("Caught error tying to setup test:", e);
824 } 819 }
825 } 820 }
826 }); 821 });
827 })(); 822 })();
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698