Skip to content

Commit

Permalink
server: Fix tests failing due to new trace properties added in TC
Browse files Browse the repository at this point in the history
The Trace Compass mainline PR below added a new trace properties to
which has to be accounted for in the REST server tests:

eclipse-tracecompass/org.eclipse.tracecompass#155

Signed-off-by: Bernd Hufmann <[email protected]>
  • Loading branch information
bhufmann committed Oct 1, 2024
1 parent 8599114 commit b588973
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ public abstract class RestServerTest {
Map.entry("domain", "\"ust\""),
Map.entry("host ID", "\"40b6dd3a-c130-431e-92ef-8c4dafe14627\""),
Map.entry("tracer_name", "\"lttng-ust\""),
Map.entry("clock_scale", "1.0"),
Map.entry("tracer_major", "2"),
Map.entry("tracer_minor", "6")
));
Expand Down Expand Up @@ -199,6 +200,7 @@ public abstract class RestServerTest {
Map.entry("host ID", "\"40b6dd3a-c130-431e-92ef-8c4dafe14627\""),
Map.entry("kernel_release", "\"4.1.13-WR8.0.0.0_standard\""),
Map.entry("tracer_name", "\"lttng-modules\""),
Map.entry("clock_scale", "1.0"),
Map.entry("tracer_major", "2"),
Map.entry("tracer_minor", "6")
));
Expand Down Expand Up @@ -226,6 +228,7 @@ public abstract class RestServerTest {
Map.entry("sysname", "\"Linux\""),
Map.entry("host ID", "\"5a71a43c-1390-4365-9baf-111c565e78c3\""),
Map.entry("kernel_release", "\"3.10.31-ltsi\""),
Map.entry("clock_scale", "1.0"),
Map.entry("tracer_name", "\"lttng-modules\""),
Map.entry("tracer_major", "2"),
Map.entry("tracer_minor", "5")
Expand Down

0 comments on commit b588973

Please sign in to comment.