-
Bug
-
Resolution: Done
-
Major
-
3.0.0.Beta4
-
None
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.
- clones
-
JBEAP-9150 ReloadRedirectTestCase stuck on HP-UX
- Closed