Debug SNTP issue 2

This commit is contained in:
Sergey Lyubka 2022-05-26 17:50:56 +01:00
parent 0226b9db31
commit cfaca604f5
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v3
- name: Start tcpdump
run: |
sudo tcpdump -nn -i any port 123 -w sntp.cap &
sudo tcpdump -nn -i any port 123 or port 53 -w sntp.cap &
sleep 1
- name: test
run: make clean test IPV6=0 SSL= OPTS=

View File

@ -1922,6 +1922,7 @@ int main(void) {
test_http_chunked();
test_http_parse();
test_util();
test_mqtt();
test_sntp();
test_dns();
test_timer();
@ -1938,7 +1939,6 @@ int main(void) {
test_http_no_content_length();
test_http_pipeline();
test_http_range();
test_mqtt();
printf("SUCCESS. Total tests: %d\n", s_num_tests);
return EXIT_SUCCESS;
}