Created
February 5, 2020 02:53
-
-
Save phargogh/816df6bd31f8717e1172d24ea19e2c18 to your computer and use it in GitHub Desktop.
Running a python program in GDB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To run a python program (such as nosetests) in GDB, do the following: | |
$ gdb --args python -m nose | |
Then at the gdb shell: | |
> start | |
> continue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment