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

Unified Diff: third_party/mojo/src/mojo/public/js/validation_unittests.js

Issue 975973002: Update mojo sdk to rev f68e697e389943cd9bf9652397312280e96b127a (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: shake fist at msvc Created 5 years, 10 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 | « third_party/mojo/src/mojo/public/js/core.js ('k') | third_party/mojo/src/mojo/public/mojo_application.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/mojo/src/mojo/public/js/validation_unittests.js
diff --git a/third_party/mojo/src/mojo/public/js/validation_unittests.js b/third_party/mojo/src/mojo/public/js/validation_unittests.js
index 8a1f385f4518403b7c8ac7cad64d1571f9b6ad57..a04879cd4b00f3bda1d466b88837bcdcae35371d 100644
--- a/third_party/mojo/src/mojo/public/js/validation_unittests.js
+++ b/third_party/mojo/src/mojo/public/js/validation_unittests.js
@@ -225,8 +225,11 @@ define([
expect(testFiles.length).toBeGreaterThan(0);
for (var i = 0; i < testFiles.length; i++) {
- // TODO(hansmuller): Temporarily skipping array pointer overflow tests.
- if (testFiles[i].indexOf("overflow") != -1) {
+ // TODO(hansmuller, yzshen): Temporarily skipping:
+ // - array pointer overflow tests;
+ // - struct versioning tests (tests with "mthd11" in the name).
+ if (testFiles[i].indexOf("overflow") != -1 ||
+ testFiles[i].indexOf("mthd11") != -1) {
console.log("[Skipping " + testFiles[i] + "]");
continue;
}
@@ -249,11 +252,6 @@ define([
testInterface.ConformanceTestInterface.validateRequest]);
}
- function testNotImplementedMessageValidation() {
- testMessageValidation("not_implemented_", [
- testInterface.ConformanceTestInterface.validateRequest]);
- }
-
function testIntegratedMessageValidation(testFilesPattern) {
var testFiles = getMessageTestFiles(testFilesPattern);
expect(testFiles.length).toBeGreaterThan(0);
« no previous file with comments | « third_party/mojo/src/mojo/public/js/core.js ('k') | third_party/mojo/src/mojo/public/mojo_application.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698