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

Unified Diff: mojo/android/javatests/src/org/chromium/mojo/bindings/ValidationTest.java

Issue 2312813002: Limit Mojo messages recursion depth (Closed)
Patch Set: Address more review comments Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | mojo/public/cpp/bindings/lib/validation_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/android/javatests/src/org/chromium/mojo/bindings/ValidationTest.java
diff --git a/mojo/android/javatests/src/org/chromium/mojo/bindings/ValidationTest.java b/mojo/android/javatests/src/org/chromium/mojo/bindings/ValidationTest.java
index f4b128ff5cdadca44a2f75f10be6cf5d5c2547cc..b62fe6da79ab176fddcd10c5edfe78c534a42958 100644
--- a/mojo/android/javatests/src/org/chromium/mojo/bindings/ValidationTest.java
+++ b/mojo/android/javatests/src/org/chromium/mojo/bindings/ValidationTest.java
@@ -60,6 +60,10 @@ public class ValidationTest extends MojoTestCase {
if (pathname.getName().startsWith("conformance_mthd13_good_2")) {
return false;
}
+ // TODO(crbug/640298): Implement max recursion depth for Java.
+ if (pathname.getName().startsWith("conformance_mthd19_good")) {
+ return false;
+ }
return pathname.isFile() && pathname.getName().startsWith(mPrefix)
&& pathname.getName().endsWith(".data");
}
« no previous file with comments | « no previous file | mojo/public/cpp/bindings/lib/validation_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698