driver.c revision 70e5a7403f0e0a3bd292b8287c5fed5772c15270
/*
* Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $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 "driver.h"
#include "testsuite.h"
const char *gettime(void);
const char *test_result_totext(test_result_t);
/*
* Not thread safe.
*/
const char *
gettime(void) {
static char now[512];
time_t t;
(void)time(&t);
"%A %d %B %H:%M:%S %Y",
localtime(&t));
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);
}