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

Unified Diff: chrome/test/ppapi/ppapi_browsertest.cc

Issue 632113003: Pepper: Allow plugins to call PPB_UDP_Socket::SendTo multiple times. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a separate test for parallel SendTo. 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: chrome/test/ppapi/ppapi_browsertest.cc
diff --git a/chrome/test/ppapi/ppapi_browsertest.cc b/chrome/test/ppapi/ppapi_browsertest.cc
index 0c80b239753d556963cd09f332b448b780353804..96f50d9412274d89aa2736b09e6491724b745f6b 100644
--- a/chrome/test/ppapi/ppapi_browsertest.cc
+++ b/chrome/test/ppapi/ppapi_browsertest.cc
@@ -312,12 +312,10 @@ TEST_PPAPI_OUT_OF_PROCESS_WITH_SSL_SERVER(TCPSocketPrivateTrusted)
#define MAYBE_UDPSocket_Broadcast UDPSocket_Broadcast
#endif
-#define RUN_UDPSOCKET_SUBTESTS \
- RunTestViaHTTP( \
- LIST_TEST(UDPSocket_ReadWrite) \
- LIST_TEST(UDPSocket_SetOption) \
- LIST_TEST(MAYBE_UDPSocket_Broadcast) \
- )
+#define RUN_UDPSOCKET_SUBTESTS \
+ RunTestViaHTTP(LIST_TEST(UDPSocket_ReadWrite) LIST_TEST(UDPSocket_SetOption) \
+ LIST_TEST(MAYBE_UDPSocket_Broadcast) \
+ LIST_TEST(UDPSocket_ParallelSend))
dmichael (off chromium) 2014/10/08 17:20:46 clang format? That's unfortunate, but I guess it'
bbudge 2014/10/08 21:44:35 I'm fix this manually.
IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, UDPSocket) {
RUN_UDPSOCKET_SUBTESTS;

Powered by Google App Engine
This is Rietveld 408576698