projects
/
awesomized
/
libmemcached
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
|
inline
| side by side (from parent 1:
55e0ec6
)
Testing the hudson port changing feature.
author
Brian Aker
<brian@gaz>
Thu, 29 Jul 2010 19:56:37 +0000
(12:56 -0700)
committer
Brian Aker
<brian@gaz>
Thu, 29 Jul 2010 19:56:37 +0000
(12:56 -0700)
tests/server.c
patch
|
blob
|
history
diff --git
a/tests/server.c
b/tests/server.c
index f8d06dbf8495e4d227b4dae54f57a308574227cf..70c0ae3b52e2497d06323292c5cb5547c1fb5124 100644
(file)
--- a/
tests/server.c
+++ b/
tests/server.c
@@
-51,6
+51,23
@@
void server_startup(server_startup_st *construct)
char buffer[1024]; /* Nothing special for number */
int count;
int status;
char buffer[1024]; /* Nothing special for number */
int count;
int status;
+ in_port_t port;
+
+ {
+ char *var;
+ char variable_buffer[1024];
+
+ snprintf(variable_buffer, sizeof(variable_buffer), "LIBMEMCACHED_PORT_%u", x);
+
+ if ((var= getenv(variable_buffer)))
+ {
+ port= (in_port_t)atoi(var);
+ }
+ else
+ {
+ port= (in_port_t)(x + TEST_PORT_BASE);
+ }
+ }
sprintf(buffer, "/tmp/%umemc.pid", x);
if (access(buffer, F_OK) == 0)
sprintf(buffer, "/tmp/%umemc.pid", x);
if (access(buffer, F_OK) == 0)
@@
-74,23
+91,23
@@
void server_startup(server_startup_st *construct)
if (x == 0)
{
sprintf(buffer, "%s -d -u root -P /tmp/%umemc.pid -t 1 -p %u -U %u -m 128",
if (x == 0)
{
sprintf(buffer, "%s -d -u root -P /tmp/%umemc.pid -t 1 -p %u -U %u -m 128",
- MEMCACHED_BINARY, x,
x + TEST_PORT_BASE, x + TEST_PORT_BASE
);
+ MEMCACHED_BINARY, x,
port, port
);
}
else
{
sprintf(buffer, "%s -d -u root -P /tmp/%umemc.pid -t 1 -p %u -U %u",
}
else
{
sprintf(buffer, "%s -d -u root -P /tmp/%umemc.pid -t 1 -p %u -U %u",
- MEMCACHED_BINARY, x,
x + TEST_PORT_BASE, x + TEST_PORT_BASE
);
+ MEMCACHED_BINARY, x,
port, port
);
}
}
- if (libmemcached_util_ping("localhost",
(in_port_t)(x + TEST_PORT_BASE)
, NULL))
+ if (libmemcached_util_ping("localhost",
port
, NULL))
{
{
- fprintf(stderr, "Server on port %u already exists\n",
x + TEST_PORT_BASE
);
+ fprintf(stderr, "Server on port %u already exists\n",
port
);
}
else
{
status= system(buffer);
fprintf(stderr, "STARTING SERVER: %s status:%d\n", buffer, status);
}
}
else
{
status= system(buffer);
fprintf(stderr, "STARTING SERVER: %s status:%d\n", buffer, status);
}
- count= sprintf(end_ptr, "localhost:%u,",
x + TEST_PORT_BASE
);
+ count= sprintf(end_ptr, "localhost:%u,",
port
);
end_ptr+= count;
}
*end_ptr= 0;
end_ptr+= count;
}
*end_ptr= 0;