You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix failing tests for the M2E-PDE connector console printout handler
and clean-up ConsoleTest.
The 'ConsoleTest.testConsole_debuggerAttachmentAndLinkAlignmentAndBehavior_tychoProject'
failed because the test-case used the out-dated Tycho version 3.0.0,
which seems to have a dependency that pulls in Apache's 'commons-parent'
version 35 that is considered as invalid by recent Maven versions:
org\apache\commons\commons-parent\35\commons-parent-35.pom:
UTF-8 BOM plus xml decl of ISO-8859-1 is incompatible (position:
START_DOCUMENT seen <?xml version="1.0" encoding="ISO-8859-1"... @1:42)
while (!debugLaunch.isTerminated() && System.currentTimeMillis() - startTime < 10000) {
222
+
while (!debugLaunch.isTerminated() && System.currentTimeMillis() - startTime < 10000) {
222
223
Thread.onSpinWait();
223
224
}
224
-
assertTrue("Debug launch " + debugLaunch.getLaunchConfiguration().getName() + " is not terminated yet after waiting for 10 seconds", debugLaunch.isTerminated());
0 commit comments