[SOLVED] How to run TestLatency

What’s the recommended procedure for running jme3test.network.TestLatency ?

I tried opening the Java source in the 3.2 SDK and then pressing Shift-F6, but that hung, and now each time I try to run it I get a “java.net.BindException: Address already in use”

It creates a server and opens a client to it and then runs forever dumping latency information to the console until you ctrl-c it.

2 Likes

Thanks, Paul.

I think the SDK’s console window got overrun by too much output. In the end, I launched the app from the test chooser:

./gradlew :jme3-examples:run

and terminated it using ^C as you advised.

Solved!