esp-idf/components/fatfs/test_apps
Adam Múdry feed6b4afe ci: Increase CONFIG_FATFS_VFS_FSTAT_BLKSIZE size for auto_fsync case 2024-04-23 22:19:23 +02:00
..
flash_ro feat(storage/fatfs): update deprecated syntax for tests 2024-04-17 10:37:31 +02:00
flash_wl ci: Increase CONFIG_FATFS_VFS_FSTAT_BLKSIZE size for auto_fsync case 2024-04-23 22:19:23 +02:00
sdcard Merge branch 'bugfix/fatfs_optimize_stat_func' into 'master' 2024-04-23 17:24:03 +08:00
test_fatfs_common fix(fatfs): Optimizes vfs_fat_stat function to get stat structure after readdir 2024-04-22 09:07:15 +02:00
.build-test-rules.yml feat(storage/example): enable host test for flash wl fatfs 2024-04-12 10:26:25 +02:00
README.md fatfs: add missing readme file for the test apps 2022-10-10 12:15:56 +02:00

README.md

fatfs component target tests

This directory contains tests for fatfs component which are run on chip targets.

See also test_fatfs_host directory for the tests which run on a Linux host.

Fatfs tests can be executed with different diskio backends: diskio_sdmmc (SD cards over SD or SPI interface), diskio_spiflash (wear levelling in internal flash) and diskio_rawflash (read-only, no wear levelling, internal flash). There is one test app here for each of these backends:

  • sdcard — runs fatfs tests with an SD card over SDMMC or SDSPI interface
  • flash_wl - runs fatfs test in a wear_levelling partition in SPI flash
  • flash_ro - runs fatfs test in a read-only (no wear levelling) partition in SPI flash

These test apps define:

  • test functions
  • setup/teardown routines
  • build/test configurations
  • pytest test runners

The actual test cases (many of which are common between the test apps) are defined in the test_fatfs_common component.