summaryrefslogtreecommitdiffhomepage
path: root/test/perl/threads/psgi.pl
diff options
context:
space:
mode:
authorMax Romanov <max.romanov@nginx.com>2020-11-05 16:11:01 +0300
committerMax Romanov <max.romanov@nginx.com>2020-11-05 16:11:01 +0300
commitfc9a012ceb83edc5511dccb55a90ea15ab52f337 (patch)
tree4a2e6eb1325fad1f57286d346e1b3fb3e153ad53 /test/perl/threads/psgi.pl
parentd321d454f9304b083d62280d0621f282a74047ee (diff)
downloadunit-fc9a012ceb83edc5511dccb55a90ea15ab52f337.tar.gz
unit-fc9a012ceb83edc5511dccb55a90ea15ab52f337.tar.bz2
Tests: added Perl threading tests.
Diffstat (limited to '')
-rw-r--r--test/perl/threads/psgi.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/perl/threads/psgi.pl b/test/perl/threads/psgi.pl
new file mode 100644
index 00000000..dce28f7d
--- /dev/null
+++ b/test/perl/threads/psgi.pl
@@ -0,0 +1,11 @@
+my $app = sub {
+ my ($environ) = @_;
+
+ sleep int($environ->{'HTTP_X_DELAY'});
+
+ return ['200', [
+ 'Content-Length' => 0,
+ 'Psgi-Multithread' => $environ->{'psgi.multithread'},
+ 'X-Thread' => $environ->{'psgi.input'}
+ ], []];
+};