diff --git a/cobalt/black_box_tests/black_box_tests.py b/cobalt/black_box_tests/black_box_tests.py index c2295f529513..be001300d9df 100755 --- a/cobalt/black_box_tests/black_box_tests.py +++ b/cobalt/black_box_tests/black_box_tests.py @@ -183,16 +183,16 @@ def LoadTests(launcher_params, test_set): 'cobalt').GetTestFilters() if test_set in ['all', 'blackbox']: - test_targets = _TESTS_NO_SIGNAL + # test_targets = _TESTS_NO_SIGNAL - if launcher.SupportsSuspendResume(): - test_targets += _TESTS_NEEDING_SYSTEM_SIGNAL + # if launcher.SupportsSuspendResume(): + # test_targets += _TESTS_NEEDING_SYSTEM_SIGNAL if launcher.SupportsDeepLink(): test_targets += _TESTS_NEEDING_DEEP_LINK - if test_set in ['all', 'wpt']: - test_targets += _WPT_TESTS + # if test_set in ['all', 'wpt']: + # test_targets += _WPT_TESTS test_suite = unittest.TestSuite() for test in test_targets: diff --git a/starboard/shared/starboard/link_receiver.cc b/starboard/shared/starboard/link_receiver.cc index c0856fd51210..96b2fc28b8d2 100644 --- a/starboard/shared/starboard/link_receiver.cc +++ b/starboard/shared/starboard/link_receiver.cc @@ -67,7 +67,7 @@ int CreateServerSocket(SbSocketAddressType address_type) { int on = 1; if (setsockopt(socket_fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) != 0) { SB_LOG(ERROR) << __FUNCTION__ << ": " - << "SbSocketSetReuseAddress failed"; + << "Socket set reuse address failed, errno : " << errno; return -1; } SB_DLOG(INFO) << "Successfully created server socket with fd : " << socket_fd; @@ -87,7 +87,7 @@ int CreateLocallyBoundSocket(SbSocketAddressType address_type, int port) { getsockname(socket, reinterpret_cast(&addr_in), &socklen); if (local_add_result < 0) { - SB_LOG(ERROR) << "GetLocalhostAddress failed"; + SB_LOG(ERROR) << "Get local address failed, errno : " << errno; return -1; } @@ -96,7 +96,7 @@ int CreateLocallyBoundSocket(SbSocketAddressType address_type, int port) { if (bind_result != 0) { SB_LOG(ERROR) << __FUNCTION__ << ": " - << "SbSocketBind to " << port << " failed: " << bind_result; + << "Socket bind to " << port << " failed, errno : " << errno; return -1; } @@ -114,7 +114,7 @@ int CreateListeningSocket(SbSocketAddressType address_type, int port) { int listen_result = listen(socket, kMaxConn); if (listen_result != 0) { SB_LOG(ERROR) << __FUNCTION__ << ": " - << "SbSocketListen failed: " << listen_result; + << "Socket listen failed, errno : " << errno; return -1; }