File tree Expand file tree Collapse file tree 1 file changed +15
-11
lines changed Expand file tree Collapse file tree 1 file changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,21 @@ script:
6
6
- PYTHONPATH=mbed-os python mbed-os/tools/make.py -t GCC_ARM -m K82F
7
7
--source=. --build=BUILD/K82F/GCC_ARM -j0
8
8
9
- # Run local littlefs tests
10
- - CFLAGS="
11
- -DLFS_READ_SIZE=64
12
- -DLFS_PROG_SIZE=64
13
- -Wno-error=format"
14
- make -Clittlefs test
15
- - CFLAGS="
16
- -DLFS_READ_SIZE=512
17
- -DLFS_PROG_SIZE=512
18
- -Wno-error=format"
19
- make -Clittlefs test
9
+ # Run littlefs functional tests
10
+ - CFLAGS="-Wno-error=format" make -Clittlefs test
11
+
12
+ # Run littlefs functional tests with different configurations
13
+ # Note: r/w size of 64 is default in mbed
14
+ - CFLAGS="-Wno-error=format -DLFS_READ_SIZE=64 -DLFS_PROG_SIZE=64"
15
+ make -Clittlefs test
16
+ - CFLAGS="-Wno-error=format -DLFS_READ_SIZE=1 -DLFS_PROG_SIZE=1"
17
+ make -Clittlefs test
18
+ - CFLAGS="-Wno-error=format -DLFS_READ_SIZE=512 -DLFS_PROG_SIZE=512"
19
+ make -Clittlefs test
20
+ - CFLAGS="-Wno-error=format -DLFS_BLOCK_COUNT=1023"
21
+ make -Clittlefs test
22
+ - CFLAGS="-Wno-error=format -DLFS_LOOKAHEAD=2047"
23
+ make -Clittlefs test
20
24
21
25
install :
22
26
# Get arm-none-eabi-gcc
You can’t perform that action at this time.
0 commit comments