Merge "adb: decrease the number of fds used in fd_count test."

am: c296440

* commit 'c2964402b6ff91126bbbf7dd453adca40a13bd64':
  adb: decrease the number of fds used in fd_count test.

Change-Id: Id078e3b319bdd8591b78898e543a636f9eac6bf0
This commit is contained in:
Josh Gao 2016-04-27 00:07:46 +00:00 committed by android-build-merger
commit dbb3e3ba92
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ TEST_F(sysdeps_poll, disconnect) {
TEST_F(sysdeps_poll, fd_count) {
// https://code.google.com/p/android/issues/detail?id=12141
static constexpr int num_sockets = 512;
static constexpr int num_sockets = 256;
std::vector<int> sockets;
std::vector<adb_pollfd> pfds;
sockets.resize(num_sockets * 2);