diff options
author | Valentin Bartenev <vbart@nginx.com> | 2017-10-05 16:46:18 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2017-10-05 16:46:18 +0300 |
commit | 096562c0b14656354fcb0eb7b7c6d524f5fb1f1d (patch) | |
tree | efd6dd7b94951778e132d84591d77ae8d7ecf469 /test/nxt_tests.c | |
parent | 653e9854637e129cd6a92adaff96784220165eea (diff) | |
download | unit-096562c0b14656354fcb0eb7b7c6d524f5fb1f1d.tar.gz unit-096562c0b14656354fcb0eb7b7c6d524f5fb1f1d.tar.bz2 |
Improved applications versions handling.
Diffstat (limited to 'test/nxt_tests.c')
-rw-r--r-- | test/nxt_tests.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/nxt_tests.c b/test/nxt_tests.c index 655192ab..7cba0f69 100644 --- a/test/nxt_tests.c +++ b/test/nxt_tests.c @@ -158,5 +158,9 @@ main(int argc, char **argv) return 1; } + if (nxt_strverscmp_test(thr) != NXT_OK) { + return 1; + } + return 0; } |