How do you automate the launching/debugging of large scale projects? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T16:32:25Z http://stackoverflow.com/feeds/question/739090 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/739090/how-do-you-automate-the-launching-debugging-of-large-scale-projects 4 How do you automate the launching/debugging of large scale projects? ceretullis 2009-04-10T22:43:55Z 2009-04-15T21:05:18Z <p><strong>Scenario:</strong></p> <p>There is a complex piece of software that is annoying to launch by hand. What I've done is to create a python script to launch the executable and attach <em>gdb</em> for debugging.</p> <p>The process launching script:</p> <ul> <li>ensures an environment variable is set.</li> <li>ensures a local build directory gets added to the environment's <code>LD_LIBRARY_PATH</code> variable.</li> <li>changes the current working directory to where the executable expects to be (not my design)</li> <li>launches the executable with a config file the only command line option </li> <li>pipes the output from the executable to a second logging process</li> <li>remembers PID of executable, then launches &amp; attaches gdb to running executable.</li> </ul> <p>The script works, with one caveat. <strong>ctrl-c doesn't interrupt the debugee and return control to gdb.</strong> So if I "continue" with no active breakpoints I can never stop the process again, it has to be killed/interrupted from another shell. BTW, running "kill -s SIGINT &lt;pid&gt;" where &lt;pid&gt; is the debuggee's pid does get me back to gdb's prompt... but it is really annoying to have to do things this way</p> <p>At first I thought Python was grabbing the SIGINT signal, but this doesn't seem to be the case as I set up signal handlers forward the signal to the debugee and that doesn't fix the problem.</p> <p>I've tried various configurations to the python script (calling os.spawn* instead of subprocess, etc.) It seems that any way I go about it, if python launched the child process, SIGINT (ctrl-c) signals DO NOT to get routed to gdb or the child process. </p> <p><strong>Current line of thinking</strong></p> <ul> <li>This might be related to needing a separate process group id for the debugee &amp; gdb...any credence to this? </li> <li>Possible bug with SELinux?</li> </ul> <p><strong>Info:</strong> </p> <ul> <li>gdb 6.8</li> <li>Python 2.5.2 (problem present with Python 2.6.1 as well)</li> <li>SELinux Environment (bug delivering signals to processes?)</li> </ul> <p><strong>Alternatives I've considered:</strong></p> <ul> <li>Setting up a .gdbinit file to do as much of what the script does, environment variables and current working directory are a problem with this approach. </li> <li>Launching executable and attaching gdb manually (yuck)</li> </ul> <p><strong>Question:</strong> How do you automate the launching/debugging of large scale projects?</p> <p><strong>Update:</strong> I've tried Nicholas Riley's examples below, on my Macintosh at home they all allow cntl-c to work to varrying degrees, on the production boxen (which I now to believe may be running SELinux) they don't... </p> http://stackoverflow.com/questions/739090/how-do-you-automate-the-launching-debugging-of-large-scale-projects/739347#739347 3 Answer by Nicholas Riley for How do you automate the launching/debugging of large scale projects? Nicholas Riley 2009-04-11T01:41:29Z 2009-04-11T02:07:12Z <p>Instead of forwarding the signal to the debuggee from Python, you could try just ignoring it. The following worked for me:</p> <pre><code>import signal signal.signal(signal.SIGINT, signal.SIG_IGN) import subprocess cat = subprocess.Popen(['cat']) subprocess.call(['gdb', '--pid=%d' % cat.pid]) </code></pre> <p>With this I was able to ^C repeatedly inside GDB and interrupt the debuggee without a problem, however I did see some weird behavior. </p> <p>Incidentally, I also had no problem when forwarding the signal to the target process.</p> <pre><code>import subprocess cat = subprocess.Popen(['cat']) import signal, os signal.signal(signal.SIGINT, lambda signum, frame: os.kill(cat.pid, signum)) subprocess.call(['gdb', '--pid=%d' % cat.pid]) </code></pre> <p>So, maybe something else is going on in your case? It might help if you posted some code that breaks.</p> http://stackoverflow.com/questions/739090/how-do-you-automate-the-launching-debugging-of-large-scale-projects/750128#750128 0 Answer by pjz for How do you automate the launching/debugging of large scale projects? pjz 2009-04-15T02:52:24Z 2009-04-15T02:52:24Z <p>Your comment notes that you're sshing in with putty... do you have a controlling tty? With openssh you would want to add the -T option, I don't know how/if putty will do this the way you're using it.</p> <p>Also: you might try using cygwin's ssh instead of putty.</p> http://stackoverflow.com/questions/739090/how-do-you-automate-the-launching-debugging-of-large-scale-projects/753721#753721 0 Answer by Zak for How do you automate the launching/debugging of large scale projects? Zak 2009-04-15T21:05:18Z 2009-04-15T21:05:18Z <p>if you already have a current script set up to do this, but are having problems automating part of it, maybe you can just grab expect and use it to provide the setup, then drop back into interactive mode in expect to launch the process. Then you can still have your ctrl-c available to interrupt.</p>