File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ script:
9
9
-include stdio.h -Werror' make all size
10
10
11
11
# run tests
12
- - make test
12
+ - make test QUIET=1
13
13
14
14
# run tests with a few different configurations
15
- - CFLAGS="-DLFS_READ_SIZE=1 -DLFS_PROG_SIZE=1" make test
16
- - CFLAGS="-DLFS_READ_SIZE=512 -DLFS_PROG_SIZE=512" make test
17
- - CFLAGS="-DLFS_BLOCK_COUNT=1023" make test
18
- - CFLAGS="-DLFS_LOOKAHEAD=2048" make test
15
+ - CFLAGS="-DLFS_READ_SIZE=1 -DLFS_PROG_SIZE=1" make test QUIET=1
16
+ - CFLAGS="-DLFS_READ_SIZE=512 -DLFS_PROG_SIZE=512" make test QUIET=1
17
+ - CFLAGS="-DLFS_BLOCK_COUNT=1023" make test QUIET=1
18
+ - CFLAGS="-DLFS_LOOKAHEAD=2048" make test QUIET=1
19
19
20
20
# self-host with littlefs-fuse for fuzz test
21
21
- make -C littlefs-fuse
@@ -28,7 +28,7 @@ script:
28
28
- cp -r $(git ls-tree --name-only HEAD) mount/littlefs
29
29
- cd mount/littlefs
30
30
- ls
31
- - make -B test_dirs
31
+ - make -B test_dirs QUIET=1
32
32
33
33
before_install :
34
34
- fusermount -V
Original file line number Diff line number Diff line change @@ -34,7 +34,11 @@ size: $(OBJ)
34
34
test : test_format test_dirs test_files test_seek test_parallel \
35
35
test_alloc test_paths test_orphan test_move test_corrupt
36
36
test_% : tests/test_% .sh
37
+ ifdef QUIET
38
+ ./$< | sed '/^[^-=]/d'
39
+ else
37
40
./$<
41
+ endif
38
42
39
43
-include $(DEP )
40
44
You can’t perform that action at this time.
0 commit comments