Skip to content

Commit d2e3dc8

Browse files
captain5050acmel
authored andcommitted
perf jevents: Correct bad character encoding
A character encoding issue added a "3D" character that breaks the metrics test. Fixes: 4076966 ("perf jevents: Parse metrics during conversion") Reviewed-by: Kajol Jain <kjain@linux.ibm.com> Signed-off-by: Ian Rogers <irogers@google.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Caleb Biggers <caleb.biggers@intel.com> Cc: Florian Fischer <florian.fischer@muhq.space> Cc: Ian Rogers <irogers@google.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: James Clark <james.clark@arm.com> Cc: Jing Zhang <renyu.zj@linux.alibaba.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: John Garry <john.g.garry@oracle.com> Cc: Kan Liang <kan.liang@linux.intel.com> Cc: Kang Minchul <tegongkang@gmail.com> Cc: Kim Phillips <kim.phillips@amd.com> Cc: Leo Yan <leo.yan@linaro.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Mike Leach <mike.leach@linaro.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Perry Taylor <perry.taylor@intel.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Ravi Bangoria <ravi.bangoria@amd.com> Cc: Rob Herring <robh@kernel.org> Cc: Sandipan Das <sandipan.das@amd.com> Cc: Stephane Eranian <eranian@google.com> Cc: Will Deacon <will@kernel.org> Cc: Xing Zhengjun <zhengjun.xing@linux.intel.com> Cc: linux-arm-kernel@lists.infradead.org Cc: linuxppc-dev@lists.ozlabs.org Link: https://lore.kernel.org/r/20230126233645.200509-14-irogers@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
1 parent 3340a08 commit d2e3dc8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/perf/pmu-events/metric_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ def test_IfElseTests(self):
8989
after = r'min((a + b if c > 1 else c + d), e + f)'
9090
self.assertEqual(ParsePerfJson(before).ToPerfJson(), after)
9191

92-
before =3D r'a if b else c if d else e'
93-
after =3D r'(a if b else (c if d else e))'
92+
before = r'a if b else c if d else e'
93+
after = r'(a if b else (c if d else e))'
9494
self.assertEqual(ParsePerfJson(before).ToPerfJson(), after)
9595

9696
def test_ToPython(self):

0 commit comments

Comments
 (0)