tools/nolibc: tests: constify test_names

Nothing ever modifies this structure.

Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
This commit is contained in:
Thomas Weißschuh 2023-03-25 16:45:11 +01:00 committed by Paul E. McKenney
parent 8c934d4822
commit c4560bd806

View File

@ -717,7 +717,7 @@ int prepare(void)
}
/* This is the definition of known test names, with their functions */
static struct test test_names[] = {
static const struct test test_names[] = {
/* add new tests here */
{ .name = "syscall", .func = run_syscall },
{ .name = "stdlib", .func = run_stdlib },