| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- TEST_PROGRAM=test_nvs
- all: $(TEST_PROGRAM)
- SOURCE_FILES = \
- esp_error_check_stub.cpp \
- $(addprefix ../src/, \
- nvs_types.cpp \
- nvs_api.cpp \
- nvs_page.cpp \
- nvs_pagemanager.cpp \
- nvs_storage.cpp \
- nvs_item_hash_list.cpp \
- nvs_encr.cpp \
- nvs_ops.cpp \
- nvs_handle_simple.cpp \
- nvs_handle_locked.cpp \
- nvs_partition_manager.cpp \
- nvs_cxx_api.cpp \
- ) \
- spi_flash_emulation.cpp \
- test_compressed_enum_table.cpp \
- test_spi_flash_emulation.cpp \
- test_intrusive_list.cpp \
- test_nvs.cpp \
- test_partition_manager.cpp \
- test_nvs_handle.cpp \
- test_nvs_storage.cpp \
- test_nvs_cxx_api.cpp \
- test_nvs_initialization.cpp \
- crc.cpp \
- main.cpp
- CPPFLAGS += -I../include -I../src -I./ -I../../esp_common/include -I../../esp32/include -I ../../mbedtls/mbedtls/include -I ../../spi_flash/include -I ../../soc/include -I ../../xtensa/include -I ../../../tools/catch -fprofile-arcs -ftest-coverage
- CFLAGS += -fprofile-arcs -ftest-coverage
- CXXFLAGS += -std=c++11 -Wall -Werror
- LDFLAGS += -lstdc++ -Wall -fprofile-arcs -ftest-coverage
- OBJ_FILES = $(SOURCE_FILES:.cpp=.o)
- COVERAGE_FILES = $(OBJ_FILES:.o=.gc*)
- $(OBJ_FILES): %.o: %.cpp
- $(TEST_PROGRAM): $(OBJ_FILES)
- $(MAKE) -C ../../mbedtls/mbedtls/ lib
- g++ $(LDFLAGS) -o $(TEST_PROGRAM) $(OBJ_FILES) ../../mbedtls/mbedtls/library/libmbedcrypto.a
- $(OUTPUT_DIR):
- mkdir -p $(OUTPUT_DIR)
- test: $(TEST_PROGRAM)
- ./$(TEST_PROGRAM) -d yes exclude:[long]
- long-test: $(TEST_PROGRAM)
- ./$(TEST_PROGRAM) -d yes
- $(COVERAGE_FILES): $(TEST_PROGRAM) long-test
- coverage.info: $(COVERAGE_FILES)
- find ../src/ -name "*.gcno" -exec gcov -r -pb {} +
- lcov --capture --directory ../src --no-external --output-file coverage.info
- coverage_report: coverage.info
- genhtml coverage.info --output-directory coverage_report
- @echo "Coverage report is in coverage_report/index.html"
- clean:
- $(MAKE) -C ../../mbedtls/mbedtls/ clean
- rm -f $(OBJ_FILES) $(TEST_PROGRAM)
- rm -f $(COVERAGE_FILES) *.gcov
- rm -rf coverage_report/
- rm -f coverage.info
- rm -f ../nvs_partition_generator/partition_single_page.bin
- rm -f ../nvs_partition_generator/partition_multipage_blob.bin
- rm -f ../nvs_partition_generator/partition_encrypted.bin
- rm -f ../nvs_partition_generator/partition_encrypted_using_keygen.bin
- rm -f ../nvs_partition_generator/partition_encrypted_using_keyfile.bin
- rm -f ../nvs_partition_generator/Test-1-partition-encrypted.bin
- rm -f ../nvs_partition_generator/Test-1-partition.bin
- rm -f ../../../tools/mass_mfg/samples/sample_values_multipage_blob_created.csv
- rm -f ../../../tools/mass_mfg/samples/sample_values_singlepage_blob_created.csv
- .PHONY: clean all test long-test
|