summaryrefslogtreecommitdiffhomepage
path: root/test/php
diff options
context:
space:
mode:
authorAndrei Belov <defan@nginx.com>2020-05-28 18:13:06 +0300
committerAndrei Belov <defan@nginx.com>2020-05-28 18:13:06 +0300
commit733c14e991d6b2d5bdae5202ae9f090d022bc956 (patch)
tree120562db5d30e5f4f51d001397f765f5cebab999 /test/php
parent6a8d4571d7fc89a951b4da80c39a93fcaa634406 (diff)
parent9d8e476c4e3695019b0a1fe3696d3411a8393de6 (diff)
downloadunit-733c14e991d6b2d5bdae5202ae9f090d022bc956.tar.gz
unit-733c14e991d6b2d5bdae5202ae9f090d022bc956.tar.bz2
Merged with the default branch.
Diffstat (limited to '')
-rw-r--r--test/php/targets/1.php4
-rw-r--r--test/php/targets/2/2.php4
-rw-r--r--test/php/targets/index.php4
3 files changed, 12 insertions, 0 deletions
diff --git a/test/php/targets/1.php b/test/php/targets/1.php
new file mode 100644
index 00000000..09f7ae2c
--- /dev/null
+++ b/test/php/targets/1.php
@@ -0,0 +1,4 @@
+<?php
+header('Content-Length: 1');
+echo '1';
+?>
diff --git a/test/php/targets/2/2.php b/test/php/targets/2/2.php
new file mode 100644
index 00000000..0c5d27c6
--- /dev/null
+++ b/test/php/targets/2/2.php
@@ -0,0 +1,4 @@
+<?php
+header('Content-Length: 1');
+echo '2';
+?>
diff --git a/test/php/targets/index.php b/test/php/targets/index.php
new file mode 100644
index 00000000..88239d5f
--- /dev/null
+++ b/test/php/targets/index.php
@@ -0,0 +1,4 @@
+<?php
+header('Content-Length: 5');
+echo 'index';
+?>