Skip to content

Commit 4a7fa4a

Browse files
authored
Update PCAP to latest. (#43)
* Update PCAP to latest. * Upgrade to java 19 for default build. * Revert "Upgrade to java 19 for default build." This reverts commit 74a2681. * Revert to public build with java 11.
1 parent 3384d6e commit 4a7fa4a

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

external/java-pcap.jar

475 Bytes
Binary file not shown.

silabs-pti/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.1
1+
1.11.2

silabs-pti/src/test/java/com/silabs/pti/EventTypeTest.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
package com.silabs.pti;
44

5+
import static org.junit.jupiter.api.Assertions.assertEquals;
56
import static org.junit.jupiter.api.Assertions.assertNotNull;
67

78
import org.junit.jupiter.api.Test;
89

10+
import com.silabs.na.pcap.LinkType;
911
import com.silabs.pti.debugchannel.EventType;
1012

1113
class EventTypeTest {
@@ -15,4 +17,8 @@ class EventTypeTest {
1517
assertNotNull(et);
1618
}
1719

20+
@Test void dlts() {
21+
assertEquals(LinkType.SILABS_DEBUG_CHANNEL, LinkType.silabsDebugChannel());
22+
}
23+
1824
}

0 commit comments

Comments
 (0)