diff --git a/lichee/buildroot/target/dragonboard/src/testcases/Makefile b/lichee/buildroot/target/dragonboard/src/testcases/Makefile index eb9af98e1a..58a5b61848 100755 --- a/lichee/buildroot/target/dragonboard/src/testcases/Makefile +++ b/lichee/buildroot/target/dragonboard/src/testcases/Makefile @@ -39,3 +39,4 @@ all: make -C hcitools make -C getevent make -C sensorhubtester + make -C stress diff --git a/lichee/buildroot/target/dragonboard/src/testcases/stress/Makefile b/lichee/buildroot/target/dragonboard/src/testcases/stress/Makefile new file mode 100755 index 0000000000..83ab5d2c8a --- /dev/null +++ b/lichee/buildroot/target/dragonboard/src/testcases/stress/Makefile @@ -0,0 +1,24 @@ + +# define sources root directory before everything +SRC_ROOT := ../.. + +# change compiler and linker option before you include rule.mk +# +# link to libscript.a when you need to fetch configuration +# from test_script +# +#CFLAGS := $(CFLAGS) -g +LDFLAGS := -lscript + +# include rule.mk +include $(SRC_ROOT)/rule.mk + +# define objects collection variable + +# add your target(s) to all +.PHONY: all +all: + +# define you target, the target will be output to dragonboard/output/bin +# directory + cp stress $(BINDIR)/ diff --git a/lichee/buildroot/target/dragonboard/src/testcases/stress/stress b/lichee/buildroot/target/dragonboard/src/testcases/stress/stress new file mode 100755 index 0000000000..90f21c0d21 Binary files /dev/null and b/lichee/buildroot/target/dragonboard/src/testcases/stress/stress differ