File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ GET /start
59
59
--- request
60
60
GET /req_time
61
61
-- - response_body_like chop
62
- ^ (?: 0 \. [12 ]| 0\. 099)\d*
62
+ ^ (?: 0 \. [12 ]| 0\. 099| 0\ . 098 )\d*
63
63
true$
64
64
-- - no_error_log
65
65
[error]
88
88
--- request
89
89
GET /req_time
90
90
-- - response_body_like chomp
91
- ^ (?: 0 \. [12 ]| 0\. 099)\d*
91
+ ^ (?: 0 \. [12 ]| 0\. 099| 0\ . 098 )\d*
92
92
0 \. \d+
93
93
true$
94
94
-- - no_error_log
Original file line number Diff line number Diff line change 1
1
# vim:set ft= ts=4 sw=4 et fdm=marker:
2
2
3
- use Test ::Nginx::Socket::Lua;
3
+ our $ SkipReason ;
4
+ BEGIN {
5
+ if (defined $ ENV {TEST_NGINX_USE_HTTP3}) {
6
+ # FIXME: we still need to enable this test file for HTTP3.
7
+ $ SkipReason = " the test cases are very unstable, skip for now." ;
8
+ }
9
+ }
10
+
11
+ use Test ::Nginx::Socket::Lua $ SkipReason ? (skip_all => $ SkipReason ) : ();
12
+
4
13
use Cwd qw(abs_path realpath);
5
14
use File::Basename;
6
15
You can’t perform that action at this time.
0 commit comments