Skip to content

Commit fe7ae8a

Browse files
committed
Remove deprecated local unit tests
1 parent d480fab commit fe7ae8a

File tree

3 files changed

+2
-911
lines changed

3 files changed

+2
-911
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,6 @@ matrix:
253253
connectivity/libraries/ppp connectivity/netsocket features/nanostack features/lwipstack features/frameworks/greentea-client \
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
256-
# Run local equeue tests
257-
- make -C ${EVENTS}/tests/unit test
258256
# Run profiling tests
259257
- make -C ${EVENTS}/tests/unit prof | tee prof
260258
after_success:

events/tests/unit/Makefile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CC = gcc
44
AR = ar
55
SIZE = size
66

7-
SRC += $(wildcard *.c)
7+
SRC += $(wildcard ../../source/*.c)
88
OBJ := $(SRC:.c=.o)
99
DEP := $(SRC:.c=.d)
1010
ASM := $(SRC:.c=.s)
@@ -27,13 +27,9 @@ LFLAGS += -pthread
2727

2828
all: $(TARGET)
2929

30-
test: tests.o $(OBJ)
31-
$(CC) $(CFLAGS) $^ $(LFLAGS) -o tests
32-
tests
33-
3430
prof: prof.o $(OBJ)
3531
$(CC) $(CFLAGS) $^ $(LFLAGS) -o prof
36-
prof
32+
./prof
3733

3834
asm: $(ASM)
3935

@@ -53,7 +49,6 @@ size: $(OBJ)
5349

5450
clean:
5551
rm -f $(TARGET)
56-
rm -f tests tests.o tests.d
5752
rm -f prof prof.o prof.d
5853
rm -f $(OBJ)
5954
rm -f $(DEP)

0 commit comments

Comments
 (0)