/* Copyright (c) 2007-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "message-date.h"
#include "test-common.h"
struct test_message_date {
const char *input;
int tz_offset;
bool ret;
};
static void test_message_date_parse(void)
{
#ifdef TIME_T_SIGNED
#endif
#endif
{ "Tue, 19 Jan 2038", 0, 0, FALSE },
/* June leap second */
/* Invalid leap second */
/* December leap second */
};
unsigned int i;
bool success;
time_t t;
int tz;
bool ret;
for (i = 0; i < N_ELEMENTS(tests); i++) {
}
}
int main(void)
{
static void (*const test_functions[])(void) = {
};
return test_run(test_functions);
}