diff options
author | Max Romanov <max.romanov@nginx.com> | 2020-11-05 16:11:01 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2020-11-05 16:11:01 +0300 |
commit | fc9a012ceb83edc5511dccb55a90ea15ab52f337 (patch) | |
tree | 4a2e6eb1325fad1f57286d346e1b3fb3e153ad53 /test/perl | |
parent | d321d454f9304b083d62280d0621f282a74047ee (diff) | |
download | unit-fc9a012ceb83edc5511dccb55a90ea15ab52f337.tar.gz unit-fc9a012ceb83edc5511dccb55a90ea15ab52f337.tar.bz2 |
Tests: added Perl threading tests.
Diffstat (limited to 'test/perl')
-rw-r--r-- | test/perl/threads/psgi.pl | 11 |
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'} + ], []]; +}; |