mirror of
https://github.com/espressif/esp-lwip.git
synced 2026-08-22 18:00:02 +00:00
As this tcp_abort could be directly called by application thread without locking the TCP/TP core. This commit also reworks and fixes CI: 1) Unit tests build with format-f warnings with GCC-11 2) Reworked to use common shell scripts from both GitLab and GitHub CI
12 lines
325 B
Bash
Executable File
12 lines
325 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
export CFLAGS="-I../../../../test/unix -include esp_lwipopts.h"
|
|
export LWIPDIR=../../../../src/
|
|
cp ${CONTRIB}/examples/example_app/lwipcfg.h.example ${CONTRIB}/examples/example_app/lwipcfg.h
|
|
cd ${CONTRIB}/ports/unix/example_app
|
|
|
|
make TESTFLAGS="-Wno-documentation" -j 4
|
|
chmod +x iteropts.sh
|
|
./iteropts.sh
|