[PATCH 07/17] test: Drop an unused parameter to ut_run_test_live_flat()
Simon Glass
sjg at chromium.org
Sun Oct 30 02:47:09 CET 2022
The select_name parameter is not used anymore. Drop it.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
test/test-main.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/test/test-main.c b/test/test-main.c
index 954a280119e..a8c1b2ef6e2 100644
--- a/test/test-main.c
+++ b/test/test-main.c
@@ -432,12 +432,11 @@ static int ut_run_test(struct unit_test_state *uts, struct unit_test *test,
* the first call to this function. On exit, @uts->fail_count is
* incremented by the number of failures (0, one hopes)
* @test: Test to run
- * @name: Name of test, possibly skipping a prefix that should not be displayed
* Return: 0 if all tests passed, -EAGAIN if the test should be skipped, -1 if
* any failed
*/
static int ut_run_test_live_flat(struct unit_test_state *uts,
- struct unit_test *test, const char *name)
+ struct unit_test *test)
{
int runs;
@@ -537,7 +536,7 @@ static int ut_run_tests(struct unit_test_state *uts, const char *prefix,
}
old_fail_count = uts->fail_count;
for (i = 0; i < uts->runs_per_test; i++)
- ret = ut_run_test_live_flat(uts, test, select_name);
+ ret = ut_run_test_live_flat(uts, test);
if (uts->fail_count != old_fail_count) {
printf("Test %s failed %d times\n", select_name,
uts->fail_count - old_fail_count);
--
2.38.1.273.g43a17bfeac-goog
More information about the U-Boot
mailing list