diff options
author | Valentin Bartenev <vbart@nginx.com> | 2017-03-01 15:29:18 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2017-03-01 15:29:18 +0300 |
commit | 4df646a25888609b1cceab3cdcda14710f9498e4 (patch) | |
tree | 4a26b9eb0f2947ccdcd4db13b3d3f43ba2b8841a /test/nxt_lib_unit_test.c | |
parent | fde4d18e3a66bb71e122e27fe11b152547ca1b2b (diff) | |
download | unit-4df646a25888609b1cceab3cdcda14710f9498e4.tar.gz unit-4df646a25888609b1cceab3cdcda14710f9498e4.tar.bz2 |
HTTP parser.
Diffstat (limited to 'test/nxt_lib_unit_test.c')
-rw-r--r-- | test/nxt_lib_unit_test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/nxt_lib_unit_test.c b/test/nxt_lib_unit_test.c index 876416e5..fce4c963 100644 --- a/test/nxt_lib_unit_test.c +++ b/test/nxt_lib_unit_test.c @@ -149,5 +149,9 @@ main(int argc, char **argv) return 1; } + if (nxt_http_parse_unit_test(thr) != NXT_OK) { + return 1; + } + return 0; } |