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

Unified Diff: ppapi/tests/mojo/test_mojo.cc

Issue 897093004: Pepper: Make Mojo test more strict. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/mojo/test_mojo.cc
diff --git a/ppapi/tests/mojo/test_mojo.cc b/ppapi/tests/mojo/test_mojo.cc
index 2743d0622771e038fc18b495b6dcdaa96be86c54..3d1af4683aec9f4cfaa01d83eca27340bcc287b6 100644
--- a/ppapi/tests/mojo/test_mojo.cc
+++ b/ppapi/tests/mojo/test_mojo.cc
@@ -18,6 +18,8 @@ void TestMojo::RunTests(const std::string& filter) {
}
std::string TestMojo::TestCreateMessagePipe() {
- mojo::MessagePipe pipe;
+ MojoHandle h0;
+ MojoHandle h1;
+ ASSERT_EQ(MOJO_RESULT_OK, MojoCreateMessagePipe(NULL, &h0, &h1));
PASS();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698