move fuzz into test/fuzz

This commit is contained in:
hathach 2022-12-08 10:39:54 +07:00
parent 19400c8556
commit 56f846cf74
30 changed files with 9 additions and 12 deletions

View File

@ -1 +0,0 @@
mcu:SAMD11

View File

@ -1 +0,0 @@
mcu:SAMD11

View File

@ -1 +0,0 @@
mcu:SAMD11

View File

@ -1,4 +1,4 @@
include ../../../tools/top.mk
include ../../../../tools/top.mk
include ../../make.mk
INC += \

View File

@ -1,4 +1,4 @@
include ../../../tools/top.mk
include ../../../../tools/top.mk
include ../../make.mk
INC += \

View File

@ -1,6 +1,6 @@
DEPS_SUBMODULES += lib/lwip
include ../../../tools/top.mk
include ../../../../tools/top.mk
include ../../make.mk
# suppress warning caused by lwip

View File

@ -37,7 +37,7 @@ endif
#-------------- Source files and compiler flags --------------
INC += $(TOP)/$(FAMILY_PATH)
INC += $(TOP)/test
# Compiler Flags
CFLAGS += \

View File

@ -40,11 +40,11 @@ SRC_C += \
# Fuzzers are c++
SRC_CXX += \
fuzz/dcd_fuzz.cc \
fuzz/fuzz.cc \
fuzz/msc_fuzz.cc \
fuzz/net_fuzz.cc \
fuzz/usbd_fuzz.cc
test/fuzz/dcd_fuzz.cc \
test/fuzz/fuzz.cc \
test/fuzz/msc_fuzz.cc \
test/fuzz/net_fuzz.cc \
test/fuzz/usbd_fuzz.cc
# TinyUSB stack include
INC += $(TOP)/src