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

Side by Side Diff: pkg/analyzer/test/generated/all_the_rest_test.dart

Issue 1174553003: Don't run HTML tests with the new task model. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 // This code was auto-generated, is not intended to be edited, and is subject to 5 // This code was auto-generated, is not intended to be edited, and is subject to
6 // significant change. Please see the README file for more information. 6 // significant change. Please see the README file for more information.
7 7
8 library engine.all_the_rest_test; 8 library engine.all_the_rest_test;
9 9
10 import 'package:analyzer/file_system/file_system.dart'; 10 import 'package:analyzer/file_system/file_system.dart';
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 runReflectiveTests(DirectoryBasedSourceContainerTest); 59 runReflectiveTests(DirectoryBasedSourceContainerTest);
60 runReflectiveTests(ElementBuilderTest); 60 runReflectiveTests(ElementBuilderTest);
61 runReflectiveTests(ElementLocatorTest); 61 runReflectiveTests(ElementLocatorTest);
62 runReflectiveTests(EnumMemberBuilderTest); 62 runReflectiveTests(EnumMemberBuilderTest);
63 runReflectiveTests(ErrorReporterTest); 63 runReflectiveTests(ErrorReporterTest);
64 runReflectiveTests(ErrorSeverityTest); 64 runReflectiveTests(ErrorSeverityTest);
65 runReflectiveTests(ExitDetectorTest); 65 runReflectiveTests(ExitDetectorTest);
66 runReflectiveTests(ExitDetectorTest2); 66 runReflectiveTests(ExitDetectorTest2);
67 runReflectiveTests(FileBasedSourceTest); 67 runReflectiveTests(FileBasedSourceTest);
68 runReflectiveTests(FileUriResolverTest); 68 runReflectiveTests(FileUriResolverTest);
69 runReflectiveTests(HtmlParserTest); 69 if (!AnalysisEngine.instance.useTaskModel) {
70 runReflectiveTests(HtmlTagInfoBuilderTest); 70 runReflectiveTests(HtmlParserTest);
71 runReflectiveTests(HtmlUnitBuilderTest); 71 runReflectiveTests(HtmlTagInfoBuilderTest);
72 runReflectiveTests(HtmlWarningCodeTest); 72 runReflectiveTests(HtmlUnitBuilderTest);
73 runReflectiveTests(HtmlWarningCodeTest);
74 }
73 runReflectiveTests(ReferenceFinderTest); 75 runReflectiveTests(ReferenceFinderTest);
74 runReflectiveTests(SDKLibrariesReaderTest); 76 runReflectiveTests(SDKLibrariesReaderTest);
75 runReflectiveTests(SourceFactoryTest); 77 runReflectiveTests(SourceFactoryTest);
76 runReflectiveTests(ToSourceVisitorTest); 78 runReflectiveTests(ToSourceVisitorTest);
77 runReflectiveTests(UriKindTest); 79 runReflectiveTests(UriKindTest);
78 runReflectiveTests(StringScannerTest); 80 runReflectiveTests(StringScannerTest);
79 } 81 }
80 82
81 abstract class AbstractScannerTest { 83 abstract class AbstractScannerTest {
82 ht.AbstractScanner newScanner(String input); 84 ht.AbstractScanner newScanner(String input);
(...skipping 8669 matching lines...) Expand 10 before | Expand all | Expand 10 after
8752 if (_expectedExternalScriptName == null) { 8754 if (_expectedExternalScriptName == null) {
8753 expect(scriptSource, isNull, reason: "script $scriptIndex"); 8755 expect(scriptSource, isNull, reason: "script $scriptIndex");
8754 } else { 8756 } else {
8755 expect(scriptSource, isNotNull, reason: "script $scriptIndex"); 8757 expect(scriptSource, isNotNull, reason: "script $scriptIndex");
8756 String actualExternalScriptName = scriptSource.shortName; 8758 String actualExternalScriptName = scriptSource.shortName;
8757 expect(actualExternalScriptName, _expectedExternalScriptName, 8759 expect(actualExternalScriptName, _expectedExternalScriptName,
8758 reason: "script $scriptIndex"); 8760 reason: "script $scriptIndex");
8759 } 8761 }
8760 } 8762 }
8761 } 8763 }
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