Commit a17467b3 authored by sbc@chromium.org's avatar sbc@chromium.org

[NaCl SDK] Temporarily disable SocketTestTCP.Listen test under PNaCl

R=binji@chromium.org, binji
BUG=377084

Review URL: https://codereview.chromium.org/296413008

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273004 0039d316-1c4b-4281-b951-d872f2087c98
parent 284145ef
......@@ -584,7 +584,15 @@ TEST_F(SocketTestUDP, Listen) {
EXPECT_EQ(errno, ENOTSUP);
}
TEST_F(SocketTestTCP, Listen) {
// Temporarily disable the TCP Listen test on PNaCl;
// TODO(sbc): Re-enable once we fix the issue: http://crbug/377084
#ifdef __pnacl__
#define MAYBE_Listen DISABLED_Listen
#else
#define MAYBE_Listen Listen
#endif
TEST_F(SocketTestTCP, MAYBE_Listen) {
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
const char* client_greeting = "hello";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment