Use >7-bit characters in event names
authorAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Thu, 19 May 2016 20:28:29 +0000 (16:28 -0400)
committerAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Thu, 19 May 2016 20:28:29 +0000 (16:28 -0400)
This will test the string encoding/decoding mechanisms more
thoroughly.

Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
lttng-ust-java-tests-common/src/main/java/org/lttng/ust/agent/integration/events/EnabledEventsITBase.java
lttng-ust-java-tests-common/src/main/java/org/lttng/ust/agent/integration/events/ListEventsITBase.java
lttng-ust-java-tests-common/src/main/java/org/lttng/ust/agent/integration/events/MultiSessionITBase.java

index c0de521f82168ad58670a2884e3ee5f8776a2c34..99ce2a3ccf3fc7023b183b8dcf0b2987e77b0737 100644 (file)
@@ -44,7 +44,7 @@ public abstract class EnabledEventsITBase {
     protected static final String EVENT_NAME_A = "EventA";
     protected static final String EVENT_NAME_B = "EventAB";
     protected static final String EVENT_NAME_C = "EventABC";
-    protected static final String EVENT_NAME_D = "EventABCD";
+    protected static final String EVENT_NAME_D = "EventABCDÉ";
 
     private ILttngSession session;
 
index ec4e0c180e5d8b7a916bd29c9db41d43a3f413ce..dc3a10bb337615bfd97ab409b1c984c485f67153 100644 (file)
@@ -37,7 +37,7 @@ public abstract class ListEventsITBase {
 
     protected static final String LOGGER_NAME_1 = "org.lttng";
     protected static final String LOGGER_NAME_2 = "org.lttng.mycomponent";
-    protected static final String LOGGER_NAME_3 = "org.lttng.myothercomponent";
+    protected static final String LOGGER_NAME_3 = "org.lttng.myothercomponent-àéç";
 
     private ILttngSession session;
 
index 6864292e8ec8509f998bddc5d59523a884fd9c47..bfaa3fc4ac7923655c8994633d7499cd6d02e180 100644 (file)
@@ -42,7 +42,7 @@ public abstract class MultiSessionITBase {
     protected static final String EVENT_NAME_A = "EventA";
     protected static final String EVENT_NAME_B = "EventAB";
     protected static final String EVENT_NAME_C = "EventABC";
-    protected static final String EVENT_NAME_D = "EventABCD";
+    protected static final String EVENT_NAME_D = "EventABCDÉ";
 
     private ILttngSession session1;
     private ILttngSession session2;
This page took 0.024473 seconds and 4 git commands to generate.