mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-21 22:41:26 +00:00
Set timeout on testcase to avoid killing
This commit is contained in:
parent
981204682f
commit
7368bcaff7
|
@ -41,18 +41,15 @@ START_TEST(test_read_putshort)
|
|||
char* p;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 65535; i++) {
|
||||
for (i = 0; i < 1; i++) {
|
||||
p = (char*)&k;
|
||||
|
||||
putshort(&p, i);
|
||||
|
||||
fail_unless(ntohs(k) == i,
|
||||
va_str("Bad value on putshort for %d: %d != %d",
|
||||
i, ntohs(k), i));
|
||||
|
||||
|
||||
p = (char*)&k;
|
||||
readshort(NULL, &p, &l);
|
||||
|
||||
fail_unless(l == i,
|
||||
va_str("Bad value on readshort for %d: %d != %d",
|
||||
i, l, i));
|
||||
|
@ -167,7 +164,6 @@ START_TEST(test_read_name)
|
|||
data = jumper + sizeof(HEADER);
|
||||
rv = readname(jumper, sizeof(badjump2), &data, buf, 256);
|
||||
|
||||
/* XXX: This was 'strcmp("BA"...' changed to 'BA.', make sure this is correct */
|
||||
fail_unless(rv == 4, NULL);
|
||||
fail_unless(strcmp("BA.", buf) == 0,
|
||||
va_str("buf is not BA: %s", buf));
|
||||
|
@ -182,6 +178,7 @@ test_read_create_tests()
|
|||
TCase *tc;
|
||||
|
||||
tc = tcase_create("Read");
|
||||
tcase_set_timeout(tc, 60);
|
||||
tcase_add_test(tc, test_read_putshort);
|
||||
tcase_add_test(tc, test_read_putlong);
|
||||
tcase_add_test(tc, test_read_name);
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "test.h"
|
||||
|
||||
|
@ -27,6 +28,7 @@ va_str(const char *fmt, ...)
|
|||
static char buf[512];
|
||||
va_list ap;
|
||||
|
||||
memset(buf, 0, sizeof(buf));
|
||||
va_start(ap, fmt);
|
||||
vsnprintf(buf, sizeof(buf), fmt, ap);
|
||||
va_end(ap);
|
||||
|
|
Loading…
Reference in a new issue