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

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

Issue 1945153002: Add corelib tests (Closed) Base URL: https://github.com/dart-lang/dev_compiler@master
Patch Set: error_test and range_error_test now pass 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 | « karma.conf.js ('k') | test/codegen/corelib/apply2_test.dart » ('j') | 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 // exports._GeneratorIterable$ is not a function 365 // exports._GeneratorIterable$ is not a function
366 'typed_data_list_test': skip_fail, 366 'typed_data_list_test': skip_fail,
367 'byte_data_test': skip_fail, 367 'byte_data_test': skip_fail,
368 'endianness_test': skip_fail, 368 'endianness_test': skip_fail,
369 369
370 'library_prefixes_test1': 'helper', 370 'library_prefixes_test1': 'helper',
371 'library_prefixes_test2': 'helper', 371 'library_prefixes_test2': 'helper',
372 'top_level_prefixed_library_test': 'helper', 372 'top_level_prefixed_library_test': 'helper',
373 }, 373 },
374 374
375 'corelib': {
376 'apply2_test': fail,
377 'apply3_test': fail,
378 'apply_test': fail,
379 'big_integer_parsed_arith_vm_test': fail,
380 'big_integer_parsed_div_rem_vm_test': fail,
381 'big_integer_parsed_mul_div_vm_test': fail,
382 'bit_twiddling_bigint_test': fail,
383 'bool_from_environment_test': fail,
384 'collection_length_test': skip_timeout,
385 'collection_removes_test': fail,
386 'collection_to_string_test': fail,
387 'compare_to2_test': fail,
388 'const_list_literal_test': fail,
389 'const_list_remove_range_test': fail,
390 'const_list_set_range_test': fail,
391 'data_uri_test': fail,
392 'date_time4_test': fail,
393 'date_time_parse_test': fail,
394 'date_time_test': fail,
395 'double_parse_test_01_multi': fail,
396 'error_stack_trace1_test': fail,
397 'error_stack_trace2_test': fail,
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
401 '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
403 'from_environment_const_type_test_15_multi': skip_fail, // constructor th rows
404 '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
406 '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
408 '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
410 'hash_map2_test': skip_timeout,
411 'hash_set_test_01_multi': fail,
412 'hidden_library2_test_01_multi': fail,
413 'indexed_list_access_test': fail,
414 'int_from_environment2_test': fail,
415 'int_from_environment_test': fail,
416 'int_modulo_arith_test_bignum_multi': fail,
417 'int_modulo_arith_test_modPow_multi': fail,
418 'int_modulo_arith_test_none_multi': fail,
419 'integer_to_radix_string_test': fail,
420 'integer_to_string_test_01_multi': fail,
421 'iterable_empty_test': fail,
422 'iterable_expand_test': fail,
423 'iterable_generate_test': fail,
424 'iterable_return_type_test_01_multi': fail,
425 'iterable_return_type_test_02_multi': fail,
426 'iterable_return_type_test_none_multi': fail,
427 'json_map_test': fail,
428 'linked_hash_map_from_iterables_test': fail,
429 'list_fill_range_test': fail,
430 'list_filled_type_argument_test': fail,
431 'list_get_range_test': fail,
432 'list_replace_range_test': fail,
433 'list_set_all_test': fail,
434 'list_to_string2_test': fail,
435 'list_to_string_test': fail,
436 'main_test': fail,
437 'map_from_iterable_test': fail,
438 'map_from_iterables_test': fail,
439 'map_keys2_test': fail,
440 'map_to_string_test': fail,
441 'map_values2_test': fail,
442 'map_values3_test': fail,
443 'map_values4_test': fail,
444 'nan_infinity_test_01_multi': fail,
445 'null_nosuchmethod_test': fail,
446 'null_test': fail,
447 'num_sign_test': fail,
448 'queue_test': fail,
449 'regress_r21715_test': fail,
450 'splay_tree_from_iterable_test': fail,
451 'splay_tree_from_iterables_test': fail,
452 'throw_half_surrogate_pair_test_02_multi': fail,
453 'stacktrace_current_test': fail,
454 'stacktrace_fromstring_test': fail,
455 'string_from_environment2_test': fail,
456 'string_from_environment_test': fail,
457 'string_fromcharcodes_test': fail,
458 'string_operations_with_null_test': fail,
459 'symbol_reserved_word_test_06_multi': fail,
460 'symbol_reserved_word_test_09_multi': fail,
461 'symbol_reserved_word_test_12_multi': fail,
462 'throw_half_surrogate_pair_test_01_multi': fail,
463 'uri_file_test': fail,
464 'uri_normalize_path_test': fail,
465 'uri_normalize_test': fail,
466 'uri_parameters_all_test': fail,
467 'uri_parse_test': fail,
468 },
469
375 'lib/typed_data': { 470 'lib/typed_data': {
376 // No bigint or int64 support 471 // No bigint or int64 support
377 'int32x4_bigint_test': skip_fail, 472 'int32x4_bigint_test': skip_fail,
378 'int64_list_load_store_test': skip_fail, 473 'int64_list_load_store_test': skip_fail,
379 'typed_data_hierarchy_int64_test': skip_fail, 474 'typed_data_hierarchy_int64_test': skip_fail,
380 475
381 // TODO(vsm): List.toString is different in DDC 476 // TODO(vsm): List.toString is different in DDC
382 // https://github.com/dart-lang/dev_compiler/issues/445 477 // https://github.com/dart-lang/dev_compiler/issues/445
383 'setRange_1_test': skip_fail, 478 'setRange_1_test': skip_fail,
384 'setRange_2_test': skip_fail, 479 'setRange_2_test': skip_fail,
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 544
450 if (!async_helper.asyncTestStarted) done(); 545 if (!async_helper.asyncTestStarted) done();
451 }); 546 });
452 } 547 }
453 } 548 }
454 549
455 for (let action of unittest_tests) { 550 for (let action of unittest_tests) {
456 action(); 551 action();
457 } 552 }
458 })(); 553 })();
OLDNEW
« no previous file with comments | « karma.conf.js ('k') | test/codegen/corelib/apply2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698