Skip to content

Commit 44733d2

Browse files
committed
remove MY_DEBUG; add some tests;
1 parent a124e58 commit 44733d2

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

ngx_http_tnt_module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* Copyright (C) 2015 Tarantool AUTHORS:
3030
* please see AUTHORS file.
3131
*/
32-
#define MY_DEBUG 1
32+
3333
#include <ngx_config.h>
3434
#include <ngx_core.h>
3535
#include <ngx_http.h>

test/parallel_clients.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
for i in {1..10}; do
4+
./test/client.py &
5+
done
6+
7+
for i in `jobs -p`; do
8+
wait $i
9+
done
10+

0 commit comments

Comments
 (0)