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

Unified Diff: mojo/public/js/bindings/validation_unittests.js

Issue 651823005: mojom: Add conformance tests for map<>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hans pointed out this work around. Created 6 years, 2 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/public/js/bindings/validation_unittests.js
diff --git a/mojo/public/js/bindings/validation_unittests.js b/mojo/public/js/bindings/validation_unittests.js
index 59aeb59e7f68d6defc672bc5d3b8f1eefd21180d..65052c45bdb75d24ec20b119de71560fe604d41b 100644
--- a/mojo/public/js/bindings/validation_unittests.js
+++ b/mojo/public/js/bindings/validation_unittests.js
@@ -231,6 +231,12 @@ define([
continue;
}
+ // TODO(erg): Remove this once Hans' map<> stuff lands.
+ if (testFiles[i].indexOf("mthd10") != -1) {
+ console.log("[Skipping " + testFiles[i] + "]");
+ continue;
+ }
+
var testMessage = readTestMessage(testFiles[i]);
var handles = new Array(testMessage.handleCount);
var message = new codec.Message(testMessage.buffer, handles);

Powered by Google App Engine
This is Rietveld 408576698