mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-28 04:05:39 +00:00 
			
		
		
		
	 4571e19387
			
		
	
	4571e19387
	
	
	
		
			
			This commit extends the heap test set by adding a test to check corruption detection in free memory block. For each byte of the free block memory, the test changes the value of the byte, call multi_heap_check(), make sure that the function returns 'corruption detected' only when comprehensive poisoning is set, restore the good value of the byte, calls multi_heap_check() again and make sure that it returns 'OK'.
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| TEST_PROGRAM=test_multi_heap
 | |
| all: $(TEST_PROGRAM)
 | |
| 
 | |
| ifneq ($(filter clean,$(MAKECMDGOALS)),)
 | |
| .NOTPARALLEL:  # prevent make clean racing the other targets
 | |
| endif
 | |
| 
 | |
| SOURCE_FILES = $(abspath \
 | |
| 	test_multi_heap.cpp \
 | |
| 	../multi_heap_poisoning.c \
 | |
| 	../multi_heap.c \
 | |
| 	../tlsf/tlsf.c \
 | |
| 	main.cpp \
 | |
| 	)
 | |
| 
 | |
| INCLUDE_FLAGS = -I../include -I../../../tools/catch -I../tlsf
 | |
| 
 | |
| GCOV ?= gcov
 | |
| 
 | |
| CPPFLAGS += $(INCLUDE_FLAGS) -D CONFIG_LOG_DEFAULT_LEVEL -g -fstack-protector-all -m32
 | |
| CFLAGS += -Wall -Werror -fprofile-arcs -ftest-coverage
 | |
| CXXFLAGS += -std=c++11 -Wall -Werror  -fprofile-arcs -ftest-coverage
 | |
| LDFLAGS += -lstdc++ -fprofile-arcs -ftest-coverage -m32
 | |
| 
 | |
| OBJ_FILES = $(filter %.o, $(SOURCE_FILES:.cpp=.o) $(SOURCE_FILES:.c=.o))
 | |
| 
 | |
| COVERAGE_FILES = $(OBJ_FILES:.o=.gc*)
 | |
| 
 | |
| $(TEST_PROGRAM): $(OBJ_FILES)
 | |
| 	g++ $(LDFLAGS) -o $(TEST_PROGRAM) $(OBJ_FILES)
 | |
| 
 | |
| $(OUTPUT_DIR):
 | |
| 	mkdir -p $(OUTPUT_DIR)
 | |
| 
 | |
| test: $(TEST_PROGRAM)
 | |
| 	./$(TEST_PROGRAM)
 | |
| 
 | |
| $(COVERAGE_FILES): $(TEST_PROGRAM) test
 | |
| 
 | |
| coverage.info: $(COVERAGE_FILES)
 | |
| 	find ../ -name "*.gcno" -exec $(GCOV) -r -pb {} +
 | |
| 	lcov --capture --directory $(abspath ../) --no-external --output-file coverage.info --gcov-tool $(GCOV)
 | |
| 
 | |
| coverage_report: coverage.info
 | |
| 	genhtml coverage.info --output-directory coverage_report
 | |
| 	@echo "Coverage report is in coverage_report/index.html"
 | |
| 
 | |
| clean:
 | |
| 	rm -f $(OBJ_FILES) $(TEST_PROGRAM)
 | |
| 	rm -f $(COVERAGE_FILES) *.gcov
 | |
| 	rm -rf coverage_report/
 | |
| 	rm -f coverage.info
 | |
| 
 | |
| .PHONY: clean all test
 |