fix automation
All checks were successful
Test and Deploy / test (push) Successful in 14s
Test and Deploy / docs (push) Has been skipped

This commit is contained in:
2024-07-09 13:54:03 -07:00
parent 0ac251279a
commit f063bccec7
2 changed files with 7 additions and 4 deletions

View File

@ -15,10 +15,10 @@
#include "lfstring.h"
#include "lfcrypto.h"
#include "lfparsing.h"
#include "lfinput.h"
#if defined(__APPLE__) || defined(__MACH__)
#include "lfmacos.h"
#include "lfinput.h"
#endif /* defined(__APPLE__) || defined(__MACH__) */
void print_ll(List *list) {
@ -448,7 +448,6 @@ void test_network() {
pthread_create(&srv_tid, NULL, udp_server_thread, NULL);
sleep(1);
system("echo hello | nc localhost 18633");
assert(strcmp(s, NET_MSG) == 0);
pthread_join(srv_tid, NULL);
printf("Passed UDP test\n");