Message ID | ZkTIPlTS4jcQ-rHX@telcontar (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | t0211-trace2-perf.sh: typo patern -> pattern | expand |
Marcel Telka <marcel@telka.sk> writes: > Hi, > > There seems to be apparent typo in the t/t0211-trace2-perf.sh file: > > > --- a/t/t0211-trace2-perf.sh > +++ b/t/t0211-trace2-perf.sh > @@ -233,7 +233,7 @@ have_counter_event () { > > pattern="d0|${thread}|${event}||||${category}|name:${name} value:${value}" && > > - grep "${patern}" ${file} > + grep "${pattern}" ${file} > } > > test_expect_success 'global counter test/test1' ' Ah, indeed, there is no assignment to the variable $patern so this grep matches by looking for all the empty strings in the file X-<.
On 5/15/24 12:52 PM, Junio C Hamano wrote: > Marcel Telka <marcel@telka.sk> writes: > >> Hi, >> >> There seems to be apparent typo in the t/t0211-trace2-perf.sh file: >> >> >> --- a/t/t0211-trace2-perf.sh >> +++ b/t/t0211-trace2-perf.sh >> @@ -233,7 +233,7 @@ have_counter_event () { >> >> pattern="d0|${thread}|${event}||||${category}|name:${name} value:${value}" && >> >> - grep "${patern}" ${file} >> + grep "${pattern}" ${file} >> } >> >> test_expect_success 'global counter test/test1' ' > > Ah, indeed, there is no assignment to the variable $patern so this > grep matches by looking for all the empty strings in the file X-<. > > OOPS. Thanks for the fix. Jeff
Jeff Hostetler <git@jeffhostetler.com> writes: > On 5/15/24 12:52 PM, Junio C Hamano wrote: >> Marcel Telka <marcel@telka.sk> writes: >> >>> Hi, >>> >>> There seems to be apparent typo in the t/t0211-trace2-perf.sh file: >>> >>> >>> --- a/t/t0211-trace2-perf.sh >>> +++ b/t/t0211-trace2-perf.sh >>> @@ -233,7 +233,7 @@ have_counter_event () { >>> pattern="d0|${thread}|${event}||||${category}|name:${name} >>> value:${value}" && >>> - grep "${patern}" ${file} >>> + grep "${pattern}" ${file} >>> } >>> test_expect_success 'global counter test/test1' ' >> Ah, indeed, there is no assignment to the variable $patern so this >> grep matches by looking for all the empty strings in the file X-<. >> > > OOPS. > > Thanks for the fix. Nobody sent an applicable patch yet, though ;-)
--- a/t/t0211-trace2-perf.sh +++ b/t/t0211-trace2-perf.sh @@ -233,7 +233,7 @@ have_counter_event () { pattern="d0|${thread}|${event}||||${category}|name:${name} value:${value}" && - grep "${patern}" ${file} + grep "${pattern}" ${file} } test_expect_success 'global counter test/test1' '