Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
15bcca0f
Commit
15bcca0f
authored
Mar 01, 2024
by
Dridi Boukelmoune
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vtc: Bump stack for ESI tests tight on 32bit systems
Refs #4063
parent
93f2e751
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
40 additions
and
9 deletions
+40
-9
e00016.vtc
bin/varnishtest/tests/e00016.vtc
+5
-4
e00030.vtc
bin/varnishtest/tests/e00030.vtc
+5
-2
e00034.vtc
bin/varnishtest/tests/e00034.vtc
+3
-0
l00003.vtc
bin/varnishtest/tests/l00003.vtc
+3
-0
r01737.vtc
bin/varnishtest/tests/r01737.vtc
+5
-1
r01781.vtc
bin/varnishtest/tests/r01781.vtc
+5
-1
r01878.vtc
bin/varnishtest/tests/r01878.vtc
+3
-0
r02849.vtc
bin/varnishtest/tests/r02849.vtc
+3
-0
v00042.vtc
bin/varnishtest/tests/v00042.vtc
+3
-0
v00043.vtc
bin/varnishtest/tests/v00043.vtc
+5
-1
No files found.
bin/varnishtest/tests/e00016.vtc
View file @
15bcca0f
...
...
@@ -26,10 +26,11 @@ server s1 {
}
} -start
varnish v1 \
-syntax 4.0 \
-arg "-p feature=+esi_disable_xml_check" \
-vcl+backend {
# give enough stack to 32bit systems
varnish v1 -cliok "param.set thread_pool_stack 80k"
varnish v1 -cliok "param.set feature +esi_disable_xml_check"
varnish v1 -syntax 4.0 -vcl+backend {
sub vcl_backend_response {
set beresp.do_esi = true;
}
...
...
bin/varnishtest/tests/e00030.vtc
View file @
15bcca0f
varnishtest "Test req_top.* in an ESI context"
varnish v1 -arg "-p feature=+esi_disable_xml_check" \
-errvcl {Variable is read only.} {
varnish v1 -errvcl {Variable is read only.} {
backend foo None;
sub vcl_recv {
...
...
@@ -52,6 +51,10 @@ server s1 {
txresp
} -start
# give enough stack to 32bit systems
varnish v1 -cliok "param.set thread_pool_stack 80k"
varnish v1 -cliok "param.set feature +esi_disable_xml_check"
varnish v1 -vcl+backend {
sub vcl_recv {
if (req.esi_level > 0) {
...
...
bin/varnishtest/tests/e00034.vtc
View file @
15bcca0f
...
...
@@ -72,6 +72,9 @@ server s1 {
}
} -start
# give enough stack to 32bit systems
varnish v1 -cliok "param.set thread_pool_stack 80k"
varnish v1 -syntax 4.1 -vcl+backend {
import debug;
...
...
bin/varnishtest/tests/l00003.vtc
View file @
15bcca0f
...
...
@@ -14,6 +14,9 @@ server s1 {
txresp -body {123}
} -start
# give enough stack to 32bit systems
varnish v1 -cliok "param.set thread_pool_stack 80k"
varnish v1 -vcl+backend {
sub vcl_backend_response {
if (bereq.url != "/2") {
...
...
bin/varnishtest/tests/r01737.vtc
View file @
15bcca0f
...
...
@@ -23,7 +23,11 @@ server s1 {
rxresp
} -start
varnish v1 -arg "-p feature=+esi_disable_xml_check" -vcl+backend {
# give enough stack to 32bit systems
varnish v1 -cliok "param.set thread_pool_stack 80k"
varnish v1 -cliok "param.set feature +esi_disable_xml_check"
varnish v1 -vcl+backend {
sub vcl_backend_response {
set beresp.do_esi = true;
}
...
...
bin/varnishtest/tests/r01781.vtc
View file @
15bcca0f
...
...
@@ -13,7 +13,11 @@ server s1 {
txresp -body {Foo}
} -start
varnish v1 -arg "-p feature=+esi_disable_xml_check" -vcl+backend {
# give enough stack to 32bit systems
varnish v1 -cliok "param.set thread_pool_stack 80k"
varnish v1 -cliok "param.set feature +esi_disable_xml_check"
varnish v1 -vcl+backend {
sub vcl_backend_response {
set beresp.do_gzip = true;
set beresp.do_esi = true;
...
...
bin/varnishtest/tests/r01878.vtc
View file @
15bcca0f
...
...
@@ -14,6 +14,9 @@ server s1 {
txresp -hdr "id: bar" -body "<3>bar</3>"
} -start
# give enough stack to 32bit systems
varnish v1 -cliok "param.set thread_pool_stack 80k"
varnish v1 -vcl+backend {
sub vcl_backend_response {
if (bereq.url != "/bar") {
...
...
bin/varnishtest/tests/r02849.vtc
View file @
15bcca0f
...
...
@@ -22,6 +22,9 @@ server s1 {
txresp -body {<P2/><esi:include src="/l3"/><P2/>}
} -start
# give enough stack to 32bit systems
varnish v1 -cliok "param.set thread_pool_stack 80k"
varnish v1 -vcl+backend {
sub vcl_recv {
if (req.url == "/l3") {
...
...
bin/varnishtest/tests/v00042.vtc
View file @
15bcca0f
...
...
@@ -33,6 +33,9 @@ server s1 {
txresp
} -start
# give enough stack to 32bit systems
varnish v1 -cliok "param.set thread_pool_stack 80k"
varnish v1 -vcl+backend {
import debug;
...
...
bin/varnishtest/tests/v00043.vtc
View file @
15bcca0f
...
...
@@ -71,7 +71,11 @@ varnish v1 -errvcl "Not available in subroutine 'vcl_init'" {
}
}
varnish v1 -cliok "param.set debug +syncvsl" -vcl+backend {
# give enough stack to 32bit systems
varnish v1 -cliok "param.set thread_pool_stack 80k"
varnish v1 -cliok "param.set debug +syncvsl"
varnish v1 -vcl+backend {
import debug;
sub vcl_init {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment