1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-27 17:58:13 +00:00
simplesshd/dropbear/libtomcrypt/testprof/test_driver.c

16 lines
321 B
C
Raw Normal View History

2014-12-10 21:56:49 +00:00
#include <tomcrypt_test.h>
void run_cmd(int res, int line, char *file, char *cmd)
{
if (res != CRYPT_OK) {
fprintf(stderr, "%s (%d)\n%s:%d:%s\n", error_to_string(res), res, file, line, cmd);
if (res != CRYPT_NOP) {
exit(EXIT_FAILURE);
}
}
}
2019-06-09 20:44:26 +00:00
/* $Source$ */
/* $Revision$ */
/* $Date$ */