diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2020-11-11 14:24:40 +0000 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2020-11-11 14:24:40 +0000 |
commit | a0ee50826a4810595123460ed11629f87b1995a0 (patch) | |
tree | 293587f202e34031215de4b777a86c9d4d618b12 /test/php/fastcgi_finish_request/index.php | |
parent | e30db59168eb83ba65b55df22b021085ae700605 (diff) | |
download | unit-a0ee50826a4810595123460ed11629f87b1995a0.tar.gz unit-a0ee50826a4810595123460ed11629f87b1995a0.tar.bz2 |
Tests: added a test for fastcgi_finish_request() function.
Diffstat (limited to 'test/php/fastcgi_finish_request/index.php')
-rw-r--r-- | test/php/fastcgi_finish_request/index.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/php/fastcgi_finish_request/index.php b/test/php/fastcgi_finish_request/index.php new file mode 100644 index 00000000..a6211303 --- /dev/null +++ b/test/php/fastcgi_finish_request/index.php @@ -0,0 +1,11 @@ +<?php +if (!isset($_GET['skip'])) { + echo "0123"; +} + +if (!fastcgi_finish_request()) { + error_log("Error in fastcgi_finish_request"); +} + +echo "4567"; +?> |