projects
/
ppam-mpi.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
3d80af603a3bc3f732a5bc4fff96791e8f15621b
[ppam-mpi.git]
/
code
/
test
/
main.c
1
void
t_serialize1
();
2
void
t_serialize2
();
3
void
t_deserialize1
();
4
void
t_deserialize2
();
5
void
t_compute_coefficients1
();
6
void
t_compute_coefficients2
();
7
void
t_pam1
();
8
void
t_pam2
();
9
void
t_pack1
();
10
void
t_pack2
();
11
void
t_unpack1
();
12
void
t_unpack2
();
13
void
t_rng1
();
14
void
t_rng2
();
15
void
t_utils1
();
16
void
t_utils2
();
17
18
// list all unit tests here
19
int
main
()
20
{
21
t_serialize1
();
22
t_serialize2
();
23
t_deserialize1
();
24
t_deserialize2
();
25
//~ t_compute_coefficients1();
26
//~ t_compute_coefficients2();
27
t_pam1
();
//may fail
28
t_pam2
();
29
t_pack1
();
30
t_pack2
();
31
t_unpack1
();
32
t_unpack2
();
33
t_rng1
();
//may fail
34
t_rng2
();
35
t_utils1
();
36
t_utils2
();
37
38
return
0
;
39
}