Branch data Line data Source code
1 : :
2 : : #include "gwrl/event.h"
3 : :
4 : 7 : int main(int argc, char ** argv) {
5 : :
6 : 7 : gwrl * rl = gwrl_create();
7 : : //assert(rl->gatherfncs == NULL);
8 : :
9 : 7 : gwrl_options opts = GWRL_DEFAULT_OPTIONS;
10 : 7 : opts.gwrl_gather_funcs_max = 10;
11 : :
12 : 7 : gwrl_set_options(rl,&opts);
13 : 7 : assert(rl->gatherfncs != NULL);
14 : :
15 : : //assert(test_var1 == 1);
16 : : //assert(test_var2 == 1);
17 : :
18 : 7 : opts.gwrl_gather_funcs_max = 20;
19 : 7 : gwrl_set_options(rl,&opts);
20 : :
21 : : //assert(test_var3 == 1);
22 : : //assert(test_var1 == 2);
23 : :
24 [ - + ]: 7 : assert(rl->gatherfncs != NULL);
25 : :
26 : 7 : return 0;
27 : : }
|