File tree Expand file tree Collapse file tree 3 files changed +2
-911
lines changed Expand file tree Collapse file tree 3 files changed +2
-911
lines changed Original file line number Diff line number Diff line change @@ -253,8 +253,6 @@ matrix:
253
253
connectivity/libraries/ppp connectivity/netsocket features/nanostack features/lwipstack features/frameworks/greentea-client \
254
254
features/frameworks/utest features/frameworks/unity components BUILD
255
255
- 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
258
256
# Run profiling tests
259
257
- make -C ${EVENTS}/tests/unit prof | tee prof
260
258
after_success :
Original file line number Diff line number Diff line change 4
4
AR = ar
5
5
SIZE = size
6
6
7
- SRC += $(wildcard * .c)
7
+ SRC += $(wildcard ../../source/ * .c)
8
8
OBJ := $(SRC:.c=.o )
9
9
DEP := $(SRC:.c=.d )
10
10
ASM := $(SRC:.c=.s )
@@ -27,13 +27,9 @@ LFLAGS += -pthread
27
27
28
28
all : $(TARGET )
29
29
30
- test : tests.o $(OBJ )
31
- $(CC ) $(CFLAGS ) $^ $(LFLAGS ) -o tests
32
- tests
33
-
34
30
prof : prof.o $(OBJ )
35
31
$(CC ) $(CFLAGS ) $^ $(LFLAGS ) -o prof
36
- prof
32
+ ./ prof
37
33
38
34
asm : $(ASM )
39
35
@@ -53,7 +49,6 @@ size: $(OBJ)
53
49
54
50
clean :
55
51
rm -f $(TARGET )
56
- rm -f tests tests.o tests.d
57
52
rm -f prof prof.o prof.d
58
53
rm -f $(OBJ )
59
54
rm -f $(DEP )
You can’t perform that action at this time.
0 commit comments