diff options
author | Brent Cook <bcook@openbsd.org> | 2015-10-17 23:32:21 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-10-17 23:32:21 -0500 |
commit | c8918dd0be1bbadfcebfc6631bd63f3b3e83befd (patch) | |
tree | 86c209e6160b32fe04ea919c49134823b461f351 /tests/Makefile.am | |
parent | a45e38e962a30307dd2034c2c032bd76333ebd2c (diff) | |
download | portable-c8918dd0be1bbadfcebfc6631bd63f3b3e83befd.tar.gz portable-c8918dd0be1bbadfcebfc6631bd63f3b3e83befd.tar.bz2 portable-c8918dd0be1bbadfcebfc6631bd63f3b3e83befd.zip |
include warnings about small time_t
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index c56b1ea..6bf3118 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -259,9 +259,15 @@ check_PROGRAMS += rc4test | |||
259 | rc4test_SOURCES = rc4test.c | 259 | rc4test_SOURCES = rc4test.c |
260 | 260 | ||
261 | # rfc5280time | 261 | # rfc5280time |
262 | if SMALL_TIME_T | ||
263 | TESTS += rfc5280time_too_small | ||
264 | check_PROGRAMS += rfc5280time_too_small | ||
265 | rfc5280time_too_small_SOURCES = rfc5280time.c | ||
266 | else | ||
262 | TESTS += rfc5280time | 267 | TESTS += rfc5280time |
263 | check_PROGRAMS += rfc5280time | 268 | check_PROGRAMS += rfc5280time |
264 | rfc5280time_SOURCES = rfc5280time.c | 269 | rfc5280time_SOURCES = rfc5280time.c |
270 | endif | ||
265 | 271 | ||
266 | # rmdtest | 272 | # rmdtest |
267 | TESTS += rmdtest | 273 | TESTS += rmdtest |