CI & local unit test fixes

pull/13333/head
George Psimenos 2020-07-21 14:38:46 +01:00
parent 76f37fb2bc
commit d480fab08b
2 changed files with 3 additions and 3 deletions

View File

@ -254,9 +254,9 @@ matrix:
features/frameworks/utest features/frameworks/unity components BUILD
- python tools/make.py -t GCC_ARM -m NUCLEO_F103RB --source=. --build=BUILD/NUCLEO_F103RB/GCC_ARM -j0
# Run local equeue tests
- make -C ${EVENTS}/test/unit test
- make -C ${EVENTS}/tests/unit test
# Run profiling tests
- make -C ${EVENTS}/test/unit prof | tee prof
- make -C ${EVENTS}/tests/unit prof | tee prof
after_success:
# Update status, comparing with master if possible.
- |

View File

@ -17,7 +17,7 @@ endif
ifdef WORD
CFLAGS += -m$(WORD)
endif
CFLAGS += -I. -I.. -I../..
CFLAGS += -I. -I../../include
CFLAGS += -std=c99
CFLAGS += -Wall
CFLAGS += -D_XOPEN_SOURCE=600