1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/pkg_fatfs_vfs: declare test as test-with-config

For running the test on boards, it needs a manual setup.
This however declares the "native" test as requiring config too.

No need to be blacklisted when using test-with-config.
This commit is contained in:
Gaëtan Harter 2019-08-02 16:14:46 +02:00 committed by Alexandre Abadie
parent 54c4536945
commit 80b9290bb1
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
3 changed files with 4 additions and 4 deletions

View File

@ -45,10 +45,6 @@ BOARD_WHITELIST := airfy-beacon arduino-due arduino-duemilanove \
TEST_DEPS += image
# The test requires some manual setup to work
# So it cannot currently be run
TEST_ON_CI_BLACKLIST += all
include $(RIOTBASE)/Makefile.include
image:

View File

@ -21,6 +21,8 @@ FAT) That implies it doesn't show any modifications in RIOT that you perform on
your OS and the other way round. So always remember to mount/unmount correctly
or your FS will probably get damaged.
make flash test-with-config
# Real Hardware
Currently the test defaults to sdcard_spi on real hardware. But generally any
@ -30,3 +32,5 @@ storage device (e.g. your SD-card). To copy the image onto the card you can use
something like `make image && dd if=bin/riot_fatfs_disk.img
of=/dev/<your_sdcard>`. After that you can connect the card to your RIOT device
and check the test output via terminal.
make flash test-with-config