/*
* Copyright (C) 2000, 2001, 2004, 2007, 2015-2017 Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/* $Id: driver.c,v 1.11 2007/06/19 23:47:00 tbox Exp $ */
#include <config.h>
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <isc/platform.h>
#include "driver.h"
#include "testsuite.h"
const char *gettime(void);
const char *test_result_totext(test_result_t);
const char *
gettime(void) {
time_t t;
#if defined(ISC_PLATFORM_USETHREADS) && !defined(WIN32)
#endif
(void)time(&t);
#if defined(ISC_PLATFORM_USETHREADS) && !defined(WIN32)
localtime_r(&t, &tm));
#else
#endif
return (now);
}
const char *
const char *s;
switch (result) {
case PASSED:
s = "PASS";
break;
case FAILED:
s = "FAIL";
break;
case UNTESTED:
s = "UNTESTED";
break;
case UNKNOWN:
default:
s = "UNKNOWN";
break;
}
return (s);
}
int
unsigned int n_failed;
unsigned int testno;
n_failed = 0;
n_failed++;
}
if (n_failed > 0)
exit(1);
return (0);
}