115116117118119120121122123124125
catch(Throwable cause) { cause.printStackTrace(System.err); } finally { // System.out.println("RemoteTestNG finishing: " + (getEnd() - getStart()) + " ms"); msh.shutDown(); if (! m_debug && ! m_dontExit) { System.exit(0); } } }
} catch(Throwable cause) { cause.printStackTrace(System.err); } finally { msh.shutDown(); if (! m_debug && ! m_dontExit) { System.exit(0); } } }
117118119120121122123124125126127