Skip to content

Commit

Permalink
Merge branch 'refactor/move_rom_test_to_fpga_only' into 'master'
Browse files Browse the repository at this point in the history
esp_rom: miniz test only on FPGA

Closes IDFCI-1605

See merge request espressif/esp-idf!22445
  • Loading branch information
0xjakob committed Mar 2, 2023
2 parents 640ba3c + a8661d0 commit 4178380
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions components/esp_rom/test_apps/main/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
set(srcs "test_app_main.c"
"test_libgcc.c"
"test_miniz.c")
"test_libgcc.c")

if(CONFIG_IDF_ENV_FPGA)
list(APPEND srcs "test_miniz.c")
endif()

# In order for the cases defined by `TEST_CASE` to be linked into the final elf,
# the component can be registered as WHOLE_ARCHIVE
Expand Down

0 comments on commit 4178380

Please sign in to comment.