1) I'm running a job on a Windows 7 Virtualbox slave, using the VirtualBox Plugin 0.5-SNAPSHOT 2) I execute a windows batch command:
java -DTestSuite="My Regression Test" -cp test.jar org.testng.TestNG -d "testng-results" MyTest.xml 3) After about 9 minutes, Jenkins stops the execution of the TestNG test with: Process leaked file descriptors. See http://wiki.jenkins-ci.org/display/JENKINS/Spawning+processes+from+build for more information So, as I understand this can happen if you spawn a process, but thats not what I'm doing here. I'm running a TestNG test that continuously talks on STDOUT to Jenkins... What's happening here?
