Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Haster <geky@geky.net>2022-11-30 09:14:52 +0300
committerChristopher Haster <geky@geky.net>2022-12-07 08:09:07 +0300
commitcda2f6f1da0e8f812bf631c4962181a2d4816532 (patch)
tree6426391b326347f50b2fe8d5aeef4e1d05c4b082 /.github
parent9b687dd96adf899c8a8f93723d8bab3fd071f129 (diff)
Changed test_runner to run with -Pnone,linear by default
The linear powerloss heuristic provides very good powerloss coverage without a significant runtime hit, so there's really no reason to run the tests without -Plinear. Previous behavior can be accomplished with an explicit -Pnone.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 697a9b6..6ebe4a6 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -92,8 +92,7 @@ jobs:
- name: test
run: |
make clean
- # TODO include this by default?
- TESTFLAGS="$TESTFLAGS -Pnone,linear" make test
+ make test
# collect coverage info
#
@@ -372,7 +371,7 @@ jobs:
# on one geometry
- name: test-valgrind
run: |
- TESTFLAGS="$TESTFLAGS -Gdefault --valgrind" make test
+ TESTFLAGS="$TESTFLAGS --valgrind -Gdefault -Pnone" make test
# test that compilation is warning free under clang
# run with Clang, mostly to check for Clang-specific warnings