On 5/15/24 12:52 PM, Junio C Hamano wrote:
Marcel Telka <marcel@xxxxxxxx> 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