Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2ea923d authored by Pablo Gamito's avatar Pablo Gamito
Browse files

Update Perfetto file puller key pattern

The pattern is a regex expression. If any part of the metric matches the pattern we pull the file pointed to by the metric. The `*` we had in the expression just meant we would match metrics with 0+ `h` after `perfetto_file_pat`, which works but is misleading as it suggests * is a match all, which is isn't.

Bug: 404268266
Flag: TEST_ONLY
Change-Id: Ic9677b8e79d53da3826d7bbf6d20d740cf3b4989
parent bb277d87
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@
        <!-- Pull files created by tests, like the output of screenshot tests -->
        <option name="directory-keys" value="/sdcard/Download/InputTests" />
        <!-- Pull perfetto traces from DefaultUITraceListener -->
        <option name="pull-pattern-keys" value="perfetto_file_path*" />
        <option name="pull-pattern-keys" value="perfetto_file_path"/>
        <option name="collect-on-run-ended-only" value="false" />
    </metrics_collector>
</configuration>