[PATCH][next] perf test mmap-thread-lookup: Fix spelling mistake "sythesizing" -> "synthesizing"

Colin Ian King posted 1 patch 9 months, 2 weeks ago
tools/perf/tests/mmap-thread-lookup.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH][next] perf test mmap-thread-lookup: Fix spelling mistake "sythesizing" -> "synthesizing"
Posted by Colin Ian King 9 months, 2 weeks ago
There are spelling mistakes in TEST_ASSERT_VAL messages. Fix them.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 tools/perf/tests/mmap-thread-lookup.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/perf/tests/mmap-thread-lookup.c b/tools/perf/tests/mmap-thread-lookup.c
index ddd1da9a4ba9..446a3615d720 100644
--- a/tools/perf/tests/mmap-thread-lookup.c
+++ b/tools/perf/tests/mmap-thread-lookup.c
@@ -229,11 +229,11 @@ static int mmap_events(synth_cb synth)
 static int test__mmap_thread_lookup(struct test_suite *test __maybe_unused, int subtest __maybe_unused)
 {
 	/* perf_event__synthesize_threads synthesize */
-	TEST_ASSERT_VAL("failed with sythesizing all",
+	TEST_ASSERT_VAL("failed with synthesizing all",
 			!mmap_events(synth_all));
 
 	/* perf_event__synthesize_thread_map synthesize */
-	TEST_ASSERT_VAL("failed with sythesizing process",
+	TEST_ASSERT_VAL("failed with synthesizing process",
 			!mmap_events(synth_process));
 
 	return 0;
-- 
2.47.2
Re: [PATCH][next] perf test mmap-thread-lookup: Fix spelling mistake "sythesizing" -> "synthesizing"
Posted by Namhyung Kim 9 months, 2 weeks ago
On Fri, 28 Feb 2025 09:09:41 +0000, Colin Ian King wrote:
> There are spelling mistakes in TEST_ASSERT_VAL messages. Fix them.
> 
> 
Applied to perf-tools-next, thanks!

Best regards,
Namhyung