Skip to content

Commit

Permalink
Fix compilation error of broken CtfTestTrace enum definition.
Browse files Browse the repository at this point in the history
Signed-off-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
  • Loading branch information
bhufmann committed Apr 12, 2024
1 parent 3f1dca1 commit 83c57c0
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -509,7 +509,7 @@ public enum CtfTestTrace {
* Trace length: ~24.1 s
* </pre>
*/
DPDK_SERVICE_CORES("/dpdk_service_cores", 66464, 25);
DPDK_SERVICE_CORES("/dpdk_service_cores", 66464, 25),

/**
* Trace collected on an aarch64 system containing some events with a
Expand All @@ -522,7 +522,7 @@ public enum CtfTestTrace {
* Trace length: ~1.12 s
* </pre>
*/
CTF_SEQUENCE_EMPTY("/ctf-sequence-empty", 10, 2)
CTF_SEQUENCE_EMPTY("/ctf-sequence-empty", 10, 2);

private final String fTraceName;
private final int fNbEvent;
Expand Down

0 comments on commit 83c57c0

Please sign in to comment.