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

Side by Side Diff: pkg/kernel/test/type_unification_test_disabled.dart

Issue 2528623002: Disable kernel unit tests. (Closed)
Patch Set: Created 4 years 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 | « pkg/kernel/test/type_unification_test.dart ('k') | pkg/kernel/test/uint31_pair_map_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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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 import 'package:kernel/type_algebra.dart'; 4 import 'package:kernel/type_algebra.dart';
5 import 'package:test/test.dart'; 5 import 'package:test/test.dart';
6 import 'type_parser.dart'; 6 import 'type_parser.dart';
7 import 'dart:io'; 7 import 'dart:io';
8 8
9 final List<TestCase> testCases = <TestCase>[ 9 final List<TestCase> testCases = <TestCase>[
10 successCase('List<T>', 'List<String>', {'T': 'String'}), 10 successCase('List<T>', 'List<String>', {'T': 'String'}),
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 if (substitution != null) { 129 if (substitution != null) {
130 reportFailure(testCase, 'Unification was supposed to fail'); 130 reportFailure(testCase, 'Unification was supposed to fail');
131 } 131 }
132 } 132 }
133 }); 133 });
134 } 134 }
135 if (numFailures > 0) { 135 if (numFailures > 0) {
136 exit(1); 136 exit(1);
137 } 137 }
138 } 138 }
OLDNEW
« no previous file with comments | « pkg/kernel/test/type_unification_test.dart ('k') | pkg/kernel/test/uint31_pair_map_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698