-
Bug
-
Resolution: Done
-
Major
-
7.1.0.DR12
-
None
-
-
-
-
-
-
Not Required
org.jboss.as.test.manualmode.management.cli.ReloadRedirectTestCase from Wildfly core manual mode module stuck on HP-UX
destroy() is unable to kill the process waiting for the user input (accept certificate dialogue). We could either destroy the process forcibly by updating CliProcessWrapper:
public void destroyProcess() {
cliProcess.destroy();
}
to
public void destroyProcess() {
cliProcess.destroyForcibly();
}
or add cliProc.ctrlCAndWaitForClose(); into finally block just before destroying the process in test case.
ReloadRedirectTestCase#testReloadwithRedirect()
finally {
cliProc.ctrlCAndWaitForClose();
cliProc.destroyProcess();
}
see WFCORE-2216 for test log and thread dump
I'll send a PR for the second option.
- is cloned by
-
WFCORE-2332 ReloadRedirectTestCase stuck on HP-UX
- Resolved
- is incorporated by
-
JBEAP-9193 (7.1.0) Upgrade to WildFly Core to 3.0.0.Beta9
- Closed