Skip to content

Commit

Permalink
selftest: damon: fix minor typos in test logs
Browse files Browse the repository at this point in the history
Patch series "selftests/damon: misc fixes".

Misc fixes for DAMON selftets on behalf of the original authors.


This patch (of 2):

This patch resolves a spelling error in the test log, preventing potential
confusion.

It is submitted as part of my application to the "Linux Kernel Bug Fixing
Spring Unpaid 2024" mentorship program of the Linux Foundation.

Link: https://lore.kernel.org/r/20240204122523.14160-1-vincenzo.mezzela@gmail.com
Link: https://lkml.kernel.org/r/20240221211148.46522-2-sj@kernel.org
Signed-off-by: Vincenzo Mezzela <vincenzo.mezzela@gmail.com>
Signed-off-by: SeongJae Park <sj@kernel.org>
Reviewed-by: SeongJae Park <sj@kernel.org>
Cc: Bernd Edlinger <bernd.edlinger@hotmail.de>
Cc: Javier Carrasco <javier.carrasco.cruz@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
  • Loading branch information
Vincenzo Mezzela authored and Andrew Morton committed Mar 5, 2024
1 parent 7c43a55 commit fd2f556
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def main():

err = kdamonds.start()
if err != None:
print('kdmaond start failed: %s' % err)
print('kdamond start failed: %s' % err)
exit(1)

while proc.poll() == None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def main():

err = kdamonds.start()
if err != None:
print('kdmaond start failed: %s' % err)
print('kdamond start failed: %s' % err)
exit(1)

wss_collected = []
Expand Down

0 comments on commit fd2f556

Please sign in to comment.