blob: f4b35c5eb5a6d4837b2fd5986f28e7c2ed620ed6 (
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
|
#include "config.h"
#include "ntp.h"
//#include "ntp_stdlib.h"
//#include "ntp_calendar.h"
#include "unity.h"
#include "ntpq.h"
//very tricky to test static functions. It might be a good idea to use cmock here
//#define HAVE_NTPQ
//#include "ntpq.c"
//extern int main(int argc, char *argv[]);
void testPrimary(void);
void testPrimary(void){
//main(NULL,NULL);
/*
char ** tokens;
int * num = 0;
tokenize("a bc de1 234",tokens, num);
*/
}
#define HAVE_NTP_SIGND
|