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

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

Issue 1951993002: update gitignore and fix build (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@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 | « .gitignore ('k') | 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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 'stacktrace_current_test': fail, 453 'stacktrace_current_test': fail,
454 'stacktrace_fromstring_test': fail, 454 'stacktrace_fromstring_test': fail,
455 'string_from_environment2_test': fail, 455 'string_from_environment2_test': fail,
456 'string_from_environment_test': fail, 456 'string_from_environment_test': fail,
457 'string_fromcharcodes_test': fail, 457 'string_fromcharcodes_test': fail,
458 'string_operations_with_null_test': fail, 458 'string_operations_with_null_test': fail,
459 'symbol_reserved_word_test_06_multi': fail, 459 'symbol_reserved_word_test_06_multi': fail,
460 'symbol_reserved_word_test_09_multi': fail, 460 'symbol_reserved_word_test_09_multi': fail,
461 'symbol_reserved_word_test_12_multi': fail, 461 'symbol_reserved_word_test_12_multi': fail,
462 'throw_half_surrogate_pair_test_01_multi': fail, 462 'throw_half_surrogate_pair_test_01_multi': fail,
463 'uri_test': fail,
463 'uri_file_test': fail, 464 'uri_file_test': fail,
464 'uri_normalize_path_test': fail, 465 'uri_normalize_path_test': fail,
465 'uri_normalize_test': fail, 466 'uri_normalize_test': fail,
466 'uri_parameters_all_test': fail, 467 'uri_parameters_all_test': fail,
467 'uri_parse_test': fail, 468 'uri_parse_test': fail,
468 }, 469 },
469 470
470 'lib/typed_data': { 471 'lib/typed_data': {
471 // No bigint or int64 support 472 // No bigint or int64 support
472 'int32x4_bigint_test': skip_fail, 473 'int32x4_bigint_test': skip_fail,
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 545
545 if (!async_helper.asyncTestStarted) done(); 546 if (!async_helper.asyncTestStarted) done();
546 }); 547 });
547 } 548 }
548 } 549 }
549 550
550 for (let action of unittest_tests) { 551 for (let action of unittest_tests) {
551 action(); 552 action();
552 } 553 }
553 })(); 554 })();
OLDNEW
« no previous file with comments | « .gitignore ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698