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

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

Issue 1969293004: html_escape_test does not fail with the dart sdk the build bot uses. (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 | « 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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 // you increase the time by a large amount, but it's pretty gratuitous. 467 // you increase the time by a large amount, but it's pretty gratuitous.
468 // I'm not sure why they are so slow. One guess is that they are spewing 468 // I'm not sure why they are so slow. One guess is that they are spewing
469 // a ton of warnings, that slow down the test. 469 // a ton of warnings, that slow down the test.
470 'chunked_conversion_utf84_test': skip_timeout, 470 'chunked_conversion_utf84_test': skip_timeout,
471 'chunked_conversion_utf88_test': skip_timeout, 471 'chunked_conversion_utf88_test': skip_timeout,
472 'chunked_conversion_utf8_test': skip_timeout, 472 'chunked_conversion_utf8_test': skip_timeout,
473 473
474 // TODO(rnystrom): Strong mode cast failures. 474 // TODO(rnystrom): Strong mode cast failures.
475 'codec1_test': fail, 475 'codec1_test': fail,
476 'encoding_test': skip_timeout, 476 'encoding_test': skip_timeout,
477 'html_escape_test': fail,
478 477
479 // TODO(rnystrom): If this test is enabled, karma gets confused and 478 // TODO(rnystrom): If this test is enabled, karma gets confused and
480 // disconnects randomly. 479 // disconnects randomly.
481 'json_lib_test': skip_fail, 480 'json_lib_test': skip_fail,
482 481
483 'json_utf8_chunk_test': skip_timeout, 482 'json_utf8_chunk_test': skip_timeout,
484 483
485 // TODO(rnystrom): Strong mode cast failure. 484 // TODO(rnystrom): Strong mode cast failure.
486 'line_splitter_test': fail, 485 'line_splitter_test': fail,
487 486
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 818
820 for (let action of unittest_tests) { 819 for (let action of unittest_tests) {
821 try { 820 try {
822 action(); 821 action();
823 } catch (e) { 822 } catch (e) {
824 console.error("Caught error tying to setup test:", e); 823 console.error("Caught error tying to setup test:", e);
825 } 824 }
826 } 825 }
827 }); 826 });
828 })(); 827 })();
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