aboutsummaryrefslogtreecommitdiff
path: root/tests/unittests/torture_rand.c
blob: 74193977eb7ba0169e087d47b78b4c5badbe6254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#define LIBSSH_STATIC
#include <libssh/priv.h>
#include <libssh/callbacks.h>
#include <pthread.h>
#include <errno.h>
#include "torture.h"

#ifdef HAVE_LIBGCRYPT
#define NUM_LOOPS 1000
#else
/* openssl is much faster */
#define NUM_LOOPS 20000
#endif
#define NUM_THREADS 100

static void setup(){
	printf("setup\n");
	ssh_threads_set_callbacks(&ssh_threads_pthread);
	ssh_init();
}

static void *torture_rand_thread(void *threadid){
	char buffer[12];
	int i;
	int r;
	(void)threadid;
	buffer[0]=buffer[1]=buffer[10]=buffer[11]='X';
	for(i=0;i<NUM_LOOPS;++i){
		r=ssh_get_random(&buffer[2], i%8+1 ,0);
	}
	pthread_exit(NULL);
}

START_TEST(torture_rand_threading)
{
	pthread_t threads[NUM_THREADS];
	int i;
	int err;
	for(i=0;i<NUM_THREADS;++i){
		err=pthread_create(&threads[i],NULL,torture_rand_thread,NULL);
		ck_assert_int_eq(err,0);
	}
	for(i=0;i<NUM_THREADS;++i){
		err=pthread_join(threads[i], NULL);
		ck_assert_int_eq(err,0);
	}
}
END_TEST



Suite *torture_make_suite(void) {
  Suite *s = suite_create("torture_rand");

  torture_create_case_fixture(s, "torture_rand_threading", torture_rand_threading,setup,NULL);

  return s;
}