view README @ 172:d099e407fff5

Tests: tune sleep in limit_req.t to avoid spurious timeouts. Tune sleep and increase rate accordingly (we have to sleep for at a delay time and a bit more). This should still catch the original problem since 0.8.38 (where delay time for rates different from 1r/s was fixed).
author Maxim Dounin <mdounin@mdounin.ru>
date Wed, 31 Aug 2011 14:43:16 +0400
parents c4021ebb41b6
children b350a2cdbf58
line wrap: on
line source

Test suite for nginx.

Use prove to run tests as one usually do for perl tests.  Individual tests
may be run as well.

Note: tests run nginx (and backend daemons if needed) listening on localhost
and may use various ports in 8000 .. 8999 range.

Usage:

    $ TEST_NGINX_BINARY=/path/to/nginx prove .

By default tests expect nginx binary to be at ../nginx/objs/nginx.

Environment variables:

TEST_NGINX_BINARY

    Sets path to nginx binary to be tested, defaults to "../nginx/objs/nginx".

TEST_NGINX_VERBOSE

    Be a bit more verbose (in particular, print requests sent and responses
    got from nginx).  Note that this requires prove -v (or HARNESS_VERBOSE).

TEST_NGINX_LEAVE

    If set temporary directory with configs and logs won't be deleted on test
    completion.  Usefull for debugging.

TEST_NGINX_CATLOG

    Cat error log to stdout after test completion.  Usefull for debugging.

TEST_NGINX_UNSAFE

    Run unsafe tests.

Happy testing!