Skip to content

Commit

Permalink
Version 3.2.0-211.0.dev
Browse files Browse the repository at this point in the history
Merge eef28ea into dev
  • Loading branch information
Dart CI committed Sep 28, 2023
2 parents 077d768 + eef28ea commit 0a27565
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
11 changes: 7 additions & 4 deletions pkg/analyzer/test/verify_docs_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ import 'package:test/test.dart';
main() async {
SnippetTester tester = SnippetTester();
await tester.verify();
if (tester.output.isNotEmpty) {
fail(tester.output.toString());
}
}

class SnippetTester {
Expand Down Expand Up @@ -79,7 +76,13 @@ class SnippetTester {
for (Resource child in folder.getChildren()) {
if (child is File) {
if (child.shortName.endsWith('.md')) {
await verifyFile(child);
test('Verify docs in ${child.path}', () async {
output.clear();
await verifyFile(child);
if (output.isNotEmpty) {
fail(output.toString());
}
});
}
} else if (child is Folder) {
await verifyFolder(child);
Expand Down
2 changes: 1 addition & 1 deletion tools/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ CHANNEL dev
MAJOR 3
MINOR 2
PATCH 0
PRERELEASE 210
PRERELEASE 211
PRERELEASE_PATCH 0
6 changes: 0 additions & 6 deletions tools/generate_package_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,6 @@ void writeIfDifferent(File file, String contents) {
Iterable<Package> makePackageConfigs(List<String> packageDirs) sync* {
for (var packageDir in packageDirs) {
var name = pubspecName(packageDir);
// TODO(https://github.com/dart-lang/webdev/issues/2201): Wait for webdev
// to roll in the fix for the pubspec and then remove this workaround.
if (posix(packageDir) ==
'third_party/pkg/webdev/fixtures/_webdevSoundSmoke') {
name = '_webdev_sound_smoke';
}
var version = pubspecLanguageVersion(packageDir);
var hasLibDirectory =
Directory(join(repoRoot, packageDir, 'lib')).existsSync();
Expand Down

0 comments on commit 0a27565

Please sign in to comment.