1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-01 03:47:23 +03:00

emulation on host: fix internal udp management (#8561)

* emulation on host: fix internal udp management
help dtors: clear map before exit, check with valgrind

* fix style
This commit is contained in:
david gauchard
2022-05-15 22:06:20 +02:00
committed by GitHub
parent 80c0570620
commit 33afdc2723
4 changed files with 10 additions and 2 deletions

View File

@ -13,7 +13,8 @@ for i in ../../libraries/ESP8266WiFi/examples/WiFiClient/WiFiClient \
../../libraries/ESP8266WebServer/examples/HelloServer/HelloServer \
../../libraries/SD/examples/Files/Files \
../../libraries/LittleFS/examples/LittleFS_Timestamp/LittleFS_Timestamp \
../../libraries/LittleFS/examples/SpeedTest/SpeedTest ; do
../../libraries/LittleFS/examples/SpeedTest/SpeedTest \
../../libraries/DNSServer/examples/DNSServer/DNSServer ; do
make -j2 D=1 FORCE32=0 $i
valgrind --leak-check=full --track-origins=yes --error-limit=no --show-leak-kinds=all --error-exitcode=999 bin/$(basename $i)/$(basename $i) -1
done