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-12 01:00:10 +0300
committerChristopher Haster <geky@geky.net>2022-11-15 22:42:07 +0300
commit1a07c2ce0d4613094b6b72d1416f3d6034933cba (patch)
tree695a6308660bc4fff4e9943956fcaab3ed16f0cc /runners/test_runner.c
parent6fce9e51568a280116b519fe986e171a2b34bd5c (diff)
A number of small script fixes/tweaks from usage
- Fixed prettyasserts.py parsing when '->' is in expr - Made prettyasserts.py failures not crash (yay dynamic typing) - Fixed the initial state of the emubd disk file to match the internal state in RAM - Fixed true/false getting changed to True/False in test.py/bench.py defines - Fixed accidental substring matching in plot.py's --by comparison - Fixed a missed LFS_BLOCk_CYCLES in test_superblocks.toml that was missed - Changed test.py/bench.py -v to only show commands being run Including the test output is still possible with test.py -v -O-, making the implicit inclusion redundant and noisy. - Added license comments to bench_runner/test_runner
Diffstat (limited to 'runners/test_runner.c')
-rw-r--r--runners/test_runner.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/runners/test_runner.c b/runners/test_runner.c
index 076f625..ea0864d 100644
--- a/runners/test_runner.c
+++ b/runners/test_runner.c
@@ -1,4 +1,9 @@
-
+/*
+ * Runner for littlefs tests
+ *
+ * Copyright (c) 2022, The littlefs authors.
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
#ifndef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 199309L
#endif