2020-03-09 11:56:12

by Masanari Iida

[permalink] [raw]
Subject: [PATCH] ktest: Fix typos in ktest.pl

This patch fixes multipe spelling typo found in ktest.pl.

Signed-off-by: Masanari Iida <[email protected]>
---
tools/testing/ktest/ktest.pl | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl
index 6a605ba75dd6..dab03d80c902 100755
--- a/tools/testing/ktest/ktest.pl
+++ b/tools/testing/ktest/ktest.pl
@@ -1030,7 +1030,7 @@ sub __read_config {
}

if (!$skip && $rest !~ /^\s*$/) {
- die "$name: $.: Gargbage found after $type\n$_";
+ die "$name: $.: Garbage found after $type\n$_";
}

if ($skip && $type eq "TEST_START") {
@@ -1063,7 +1063,7 @@ sub __read_config {
}

if ($rest !~ /^\s*$/) {
- die "$name: $.: Gargbage found after DEFAULTS\n$_";
+ die "$name: $.: Garbage found after DEFAULTS\n$_";
}

} elsif (/^\s*INCLUDE\s+(\S+)/) {
@@ -1154,7 +1154,7 @@ sub __read_config {
# on of these sections that have SKIP defined.
# The save variable can be
# defined multiple times and the new one simply overrides
- # the prevous one.
+ # the previous one.
set_variable($lvalue, $rvalue);

} else {
@@ -1234,7 +1234,7 @@ sub read_config {
foreach my $option (keys %not_used) {
print "$option\n";
}
- print "Set IGRNORE_UNUSED = 1 to have ktest ignore unused variables\n";
+ print "Set IGNORE_UNUSED = 1 to have ktest ignore unused variables\n";
if (!read_yn "Do you want to continue?") {
exit -1;
}
@@ -1345,7 +1345,7 @@ sub eval_option {
# Check for recursive evaluations.
# 100 deep should be more than enough.
if ($r++ > 100) {
- die "Over 100 evaluations accurred with $option\n" .
+ die "Over 100 evaluations occurred with $option\n" .
"Check for recursive variables\n";
}
$prev = $option;
@@ -1461,7 +1461,7 @@ sub get_test_name() {

sub dodie {

- # avoid recusion
+ # avoid recursion
return if ($in_die);
$in_die = 1;

--
2.26.0.rc0


2020-03-09 15:00:42

by Randy Dunlap

[permalink] [raw]
Subject: Re: [PATCH] ktest: Fix typos in ktest.pl

On 3/9/20 4:54 AM, Masanari Iida wrote:
> This patch fixes multipe spelling typo found in ktest.pl.
>
> Signed-off-by: Masanari Iida <[email protected]>

Looks good. Thanks.

Acked-by: Randy Dunlap <[email protected]>

> ---
> tools/testing/ktest/ktest.pl | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl
> index 6a605ba75dd6..dab03d80c902 100755
> --- a/tools/testing/ktest/ktest.pl
> +++ b/tools/testing/ktest/ktest.pl
> @@ -1030,7 +1030,7 @@ sub __read_config {
> }
>
> if (!$skip && $rest !~ /^\s*$/) {
> - die "$name: $.: Gargbage found after $type\n$_";
> + die "$name: $.: Garbage found after $type\n$_";
> }
>
> if ($skip && $type eq "TEST_START") {
> @@ -1063,7 +1063,7 @@ sub __read_config {
> }
>
> if ($rest !~ /^\s*$/) {
> - die "$name: $.: Gargbage found after DEFAULTS\n$_";
> + die "$name: $.: Garbage found after DEFAULTS\n$_";
> }
>
> } elsif (/^\s*INCLUDE\s+(\S+)/) {
> @@ -1154,7 +1154,7 @@ sub __read_config {
> # on of these sections that have SKIP defined.
> # The save variable can be
> # defined multiple times and the new one simply overrides
> - # the prevous one.
> + # the previous one.
> set_variable($lvalue, $rvalue);
>
> } else {
> @@ -1234,7 +1234,7 @@ sub read_config {
> foreach my $option (keys %not_used) {
> print "$option\n";
> }
> - print "Set IGRNORE_UNUSED = 1 to have ktest ignore unused variables\n";
> + print "Set IGNORE_UNUSED = 1 to have ktest ignore unused variables\n";
> if (!read_yn "Do you want to continue?") {
> exit -1;
> }
> @@ -1345,7 +1345,7 @@ sub eval_option {
> # Check for recursive evaluations.
> # 100 deep should be more than enough.
> if ($r++ > 100) {
> - die "Over 100 evaluations accurred with $option\n" .
> + die "Over 100 evaluations occurred with $option\n" .
> "Check for recursive variables\n";
> }
> $prev = $option;
> @@ -1461,7 +1461,7 @@ sub get_test_name() {
>
> sub dodie {
>
> - # avoid recusion
> + # avoid recursion
> return if ($in_die);
> $in_die = 1;
>
>


--
~Randy