Skip to content

Commit d480fab

Browse files
committed
CI & local unit test fixes
1 parent 76f37fb commit d480fab

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,9 @@ matrix:
254254
features/frameworks/utest features/frameworks/unity components BUILD
255255
- python tools/make.py -t GCC_ARM -m NUCLEO_F103RB --source=. --build=BUILD/NUCLEO_F103RB/GCC_ARM -j0
256256
# Run local equeue tests
257-
- make -C ${EVENTS}/test/unit test
257+
- make -C ${EVENTS}/tests/unit test
258258
# Run profiling tests
259-
- make -C ${EVENTS}/test/unit prof | tee prof
259+
- make -C ${EVENTS}/tests/unit prof | tee prof
260260
after_success:
261261
# Update status, comparing with master if possible.
262262
- |

events/tests/unit/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ endif
1717
ifdef WORD
1818
CFLAGS += -m$(WORD)
1919
endif
20-
CFLAGS += -I. -I.. -I../..
20+
CFLAGS += -I. -I../../include
2121
CFLAGS += -std=c99
2222
CFLAGS += -Wall
2323
CFLAGS += -D_XOPEN_SOURCE=600

0 commit comments

Comments
 (0)