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

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

Issue 2302563002: Add timeout for pi_test (Closed)
Patch Set: Created 4 years, 3 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 define(['dart_sdk', 'async_helper', 'unittest', 'require'], 5 define(['dart_sdk', 'async_helper', 'unittest', 'require'],
6 function(dart_sdk, async_helper, unittest, require) { 6 function(dart_sdk, async_helper, unittest, require) {
7 'use strict'; 7 'use strict';
8 8
9 async_helper = async_helper.async_helper; 9 async_helper = async_helper.async_helper;
10 10
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 'js_typed_interop_default_arg_test_explicit_argument_multi': ['unittest', 'skip', 'fail'], 568 'js_typed_interop_default_arg_test_explicit_argument_multi': ['unittest', 'skip', 'fail'],
569 'js_typed_interop_default_arg_test_default_value_multi': ['unittest', 'ski p', 'fail'] 569 'js_typed_interop_default_arg_test_default_value_multi': ['unittest', 'ski p', 'fail']
570 }, 570 },
571 571
572 'lib/math': { 572 'lib/math': {
573 // TODO(het): triage 573 // TODO(het): triage
574 'double_pow_test': skip_fail, 574 'double_pow_test': skip_fail,
575 'low_test': skip_fail, 575 'low_test': skip_fail,
576 'math_test': skip_fail, 576 'math_test': skip_fail,
577 'math2_test': skip_fail, 577 'math2_test': skip_fail,
578 'pi_test': skip_timeout,
579 'point_test': ['unittest', 'skip', 'fail'],
578 'random_big_test': skip_fail, 580 'random_big_test': skip_fail,
579 'point_test': ['unittest', 'skip', 'fail'],
580 'rectangle_test': 'unittest', 581 'rectangle_test': 'unittest',
581 }, 582 },
582 583
583 'lib/typed_data': { 584 'lib/typed_data': {
584 // No bigint or int64 support 585 // No bigint or int64 support
585 'int32x4_bigint_test': skip_fail, 586 'int32x4_bigint_test': skip_fail,
586 'int64_list_load_store_test': skip_fail, 587 'int64_list_load_store_test': skip_fail,
587 'typed_data_hierarchy_int64_test': skip_fail, 588 'typed_data_hierarchy_int64_test': skip_fail,
588 'typed_data_list_test': fail, 589 'typed_data_list_test': fail,
589 }, 590 },
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 875
875 for (let action of unittest_tests) { 876 for (let action of unittest_tests) {
876 try { 877 try {
877 action(); 878 action();
878 } catch (e) { 879 } catch (e) {
879 console.error("Caught error tying to setup test:", e); 880 console.error("Caught error tying to setup test:", e);
880 } 881 }
881 } 882 }
882 }); 883 });
883 }); 884 });
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