aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/util
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-08-29 09:36:22 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2018-08-29 09:36:22 +0200
commit9e735f40e5299d0bd0e6b09d1fa0f9fb38bfb7b6 (patch)
tree111bcc6b05eb3677116d18d3207f3f44798f2c7f /test/core/util
parentceecf80283e6ca184df587f76ed053f1f5295b7f (diff)
fix port picker for remote bazel
Diffstat (limited to 'test/core/util')
-rw-r--r--test/core/util/port_isolated_runtime_environment.cc14
1 files changed, 9 insertions, 5 deletions
diff --git a/test/core/util/port_isolated_runtime_environment.cc b/test/core/util/port_isolated_runtime_environment.cc
index ff8342ff4a..773290b795 100644
--- a/test/core/util/port_isolated_runtime_environment.cc
+++ b/test/core/util/port_isolated_runtime_environment.cc
@@ -16,8 +16,9 @@
*
*/
-/* When running tests on remote machines, the framework takes a round-robin pick
- * of a port within certain range. There is no need to recycle ports.
+/* When individual tests run in an isolated runtime environment (e.g. each test
+ * runs in a separate container) the framework takes a round-robin pick of a
+ * port within certain range. There is no need to recycle ports.
*/
#include <grpc/support/time.h>
#include <stdlib.h>
@@ -28,18 +29,21 @@
#include "test/core/util/port.h"
#define MIN_PORT 49152
-#define MAX_PORT 65536
+#define MAX_PORT 65535
int get_random_starting_port() {
srand(gpr_now(GPR_CLOCK_REALTIME).tv_nsec);
- return rand() % (MAX_PORT - MIN_PORT + 1) + MIN_PORT;
+ double rnd = static_cast<double>(rand()) /
+ (static_cast<double>(RAND_MAX) + 1.0); // values from [0,1)
+ return static_cast<int>(rnd * (MAX_PORT - MIN_PORT + 1)) + MIN_PORT;
}
static int s_allocated_port = get_random_starting_port();
int grpc_pick_unused_port_or_die(void) {
+ // TODO(jtattermusch): protect by mutex
int allocated_port = s_allocated_port++;
- if (s_allocated_port == MAX_PORT) {
+ if (s_allocated_port == MAX_PORT + 1) {
s_allocated_port = MIN_PORT;
}