In test/bench.py, added "internal" flag

This marks internal tests/benches (case.in="lfs.c") with an otherwise-unused
flag that is printed during --summary/--list-*. This just helps identify which
tests/benches are internal.
This commit is contained in:
Christopher Haster
2023-06-01 17:13:51 -05:00
parent 82027f3d90
commit 07244fb2d4
6 changed files with 35 additions and 15 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ void bench_stop(void);
struct lfs_config;
enum bench_flags {
BENCH_REENTRANT = 0x1,
BENCH_INTERNAL = 0x1,
};
typedef uint8_t bench_flags_t;