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

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

Issue 2407913002: Stop using unittest in point_test and rectangle_test. (Closed)
Patch Set: Fix cast in the input_sdk. Created 4 years, 2 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
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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 'regress_194523002_test': ['unittest', 'skip', 'fail'], 581 'regress_194523002_test': ['unittest', 'skip', 'fail'],
582 }, 582 },
583 583
584 'lib/math': { 584 'lib/math': {
585 // TODO(het): triage 585 // TODO(het): triage
586 'double_pow_test': skip_fail, 586 'double_pow_test': skip_fail,
587 'low_test': skip_fail, 587 'low_test': skip_fail,
588 'math_test': skip_fail, 588 'math_test': skip_fail,
589 'math2_test': skip_fail, 589 'math2_test': skip_fail,
590 'pi_test': skip_timeout, 590 'pi_test': skip_timeout,
591 'point_test': ['unittest', 'skip', 'fail'],
592 'random_big_test': skip_fail, 591 'random_big_test': skip_fail,
593 'rectangle_test': 'unittest', 592 'rectangle_test': fail, // TODO(rnystrom): #27551
594 }, 593 },
595 594
596 'lib/typed_data': { 595 'lib/typed_data': {
597 // No bigint or int64 support 596 // No bigint or int64 support
598 'int32x4_bigint_test': skip_fail, 597 'int32x4_bigint_test': skip_fail,
599 'int64_list_load_store_test': skip_fail, 598 'int64_list_load_store_test': skip_fail,
600 'typed_data_hierarchy_int64_test': skip_fail, 599 'typed_data_hierarchy_int64_test': skip_fail,
601 'typed_data_list_test': fail, 600 'typed_data_list_test': fail,
602 }, 601 },
603 602
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 891
893 for (let action of unittest_tests) { 892 for (let action of unittest_tests) {
894 try { 893 try {
895 action(); 894 action();
896 } catch (e) { 895 } catch (e) {
897 console.error("Caught error tying to setup test:", e); 896 console.error("Caught error tying to setup test:", e);
898 } 897 }
899 } 898 }
900 }); 899 });
901 }); 900 });
OLDNEW
« no previous file with comments | « pkg/dev_compiler/lib/js/legacy/dart_sdk.js ('k') | pkg/dev_compiler/test/codegen/lib/math/point_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698