| Index: mojo/dart/test/validation_test.dart
|
| diff --git a/mojo/dart/test/validation_test.dart b/mojo/dart/test/validation_test.dart
|
| index ee9fb5886753572e184b81503bb05bda4862eb62..390a63f61208563dfdb6b9ccfc713150bba02b6a 100644
|
| --- a/mojo/dart/test/validation_test.dart
|
| +++ b/mojo/dart/test/validation_test.dart
|
| @@ -79,9 +79,12 @@ runTest(String name, parser.ValidationParseResult test, String expected) {
|
| });
|
| }
|
|
|
| +// TODO(zra, yzshen): Some struct versioning tests (with "mthd11" in their
|
| +// names) are skipped.
|
| Iterable<String> getTestFiles(String path, String prefix) =>
|
| builtin.enumerateFiles(path)
|
| - .where((s) => s.startsWith(prefix) && s.endsWith(".data"))
|
| + .where((s) => s.startsWith(prefix) && s.endsWith(".data") &&
|
| + !s.contains("mthd11"))
|
| .map((s) => s.replaceFirst('.data', ''));
|
|
|
| main(List args) {
|
|
|