mirror of
https://github.com/clearml/dropbear
synced 2025-02-07 21:23:51 +00:00
to branch 'au.asn.ucc.matt.dropbear' (head fdf4a7a3b97ae5046139915de7e40399cceb2c01) --HG-- extra : convert_revision : dc4809882e1b9f2dcd3f8bbe38c74a0a52c39ce4
14 lines
352 B
C
14 lines
352 B
C
#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);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
|
|
/* $Source: /cvs/libtom/libtomcrypt/testprof/test.c,v $ */
|
|
/* $Revision: 1.6 $ */
|
|
/* $Date: 2005/05/05 14:35:59 $ */
|