comparison range_charset.t @ 952:e9064d691790

Tests: converted tests to run in parallel.
author Andrey Zelenkov <zelenkov@nginx.com>
date Tue, 21 Jun 2016 16:39:13 +0300
parents 2cd00179f4b2
children 882267679006
comparison
equal deleted inserted replaced
951:9361c7eddfc1 952:e9064d691790
41 41
42 proxy_cache_path %%TESTDIR%%/cache levels=1:2 42 proxy_cache_path %%TESTDIR%%/cache levels=1:2
43 keys_zone=NAME:1m; 43 keys_zone=NAME:1m;
44 44
45 server { 45 server {
46 listen 127.0.0.1:8080; 46 listen 127.0.0.1:%%PORT_0%%;
47 server_name localhost; 47 server_name localhost;
48 48
49 location / { 49 location / {
50 proxy_pass http://127.0.0.1:8081; 50 proxy_pass http://127.0.0.1:%%PORT_1%%;
51 proxy_cache NAME; 51 proxy_cache NAME;
52 proxy_cache_valid 200 1m; 52 proxy_cache_valid 200 1m;
53 } 53 }
54 } 54 }
55 55
56 server { 56 server {
57 listen 127.0.0.1:8081; 57 listen 127.0.0.1:%%PORT_1%%;
58 server_name localhost; 58 server_name localhost;
59 59
60 charset B; 60 charset B;
61 61
62 location /t2.html { 62 location /t2.html {