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

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

Issue 2339413004: Allow Mojo structs as map keys (Closed)
Patch Set: Revert no-longer-needed changes to clone_equals_util.h 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
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 b62fe6da79ab176fddcd10c5edfe78c534a42958..1c4f2a76557f35664f3785bb0b4afd3e6efaf8f2 100644
--- a/mojo/android/javatests/src/org/chromium/mojo/bindings/ValidationTest.java
+++ b/mojo/android/javatests/src/org/chromium/mojo/bindings/ValidationTest.java
@@ -64,6 +64,10 @@ public class ValidationTest extends MojoTestCase {
if (pathname.getName().startsWith("conformance_mthd19_good")) {
yzshen1 2016/09/21 23:17:52 I just realized that the naming of conformance_mth
tibell 2016/09/22 05:17:23 Done.
return false;
}
+ // TODO(tibell): Allow structs as map keys in Java.
+ if (pathname.getName().startsWith("conformance_mthd20_good")) {
+ return false;
+ }
return pathname.isFile() && pathname.getName().startsWith(mPrefix)
&& pathname.getName().endsWith(".data");
}

Powered by Google App Engine
This is Rietveld 408576698