[
https://issues.apache.org/jira/browse/PLC4X-330?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17468823#comment-17468823
]
Sebastian Rühl commented on PLC4X-330:
--------------------------------------
like that for example:
{code:java}
private static int freePort;
static {
try (ServerSocket serverSocket = new ServerSocket(0)) {
freePort = serverSocket.getLocalPort();
} catch (IOException e) {
freePort=-1;
}
}
// Address of local milo server
rivate static String miloLocalAddress = "127.0.0.1:"+freePort+"/milo";
{code}
> OPCUA tests don't run on aarch64
> --------------------------------
>
> Key: PLC4X-330
> URL: https://issues.apache.org/jira/browse/PLC4X-330
> Project: Apache PLC4X
> Issue Type: Bug
> Components: PLC4J
> Reporter: Sebastian Rühl
> Assignee: Ben Hutcheson
> Priority: Major
>
> When running on aarch64 the tests interfere with each other and blocking a
> infinite amount of time. Currently those a disabled for aarch64
> (Seems like there is missing cleanup somewhere)
--
This message was sent by Atlassian Jira
(v8.20.1#820001)