Stopgap fix for fling_stream_test timing out

pull/1443/head
Craig Tiller 10 years ago
parent 9da3be5112
commit ff1ad1308e
  1. 3
      test/core/fling/server.c

@ -39,6 +39,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <time.h> #include <time.h>
#include <unistd.h>
#include "test/core/util/grpc_profiler.h" #include "test/core/util/grpc_profiler.h"
#include "test/core/util/test_config.h" #include "test/core/util/test_config.h"
@ -165,7 +166,7 @@ static void start_send_status(void) {
tag(FLING_SERVER_SEND_STATUS_FOR_STREAMING))); tag(FLING_SERVER_SEND_STATUS_FOR_STREAMING)));
} }
static void sigint_handler(int x) { got_sigint = 1; } static void sigint_handler(int x) { _exit(0); }
int main(int argc, char **argv) { int main(int argc, char **argv) {
grpc_event *ev; grpc_event *ev;

Loading…
Cancel
Save