Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-xdb.py « gdb « data - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b60c4a2f1e8c736fcd9c9ead9396e85a97e307c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Tester script for the xdb functionality
# Run using gdb -P test-xdb.py <NORMAL GDB COMMAND LINE>

import sys

gdb.execute ("file %s".format (sys.argv [0]))
gdb.execute ("r --break *:* %s".format (" ".join (sys.argv [1:len (sys.argv)])))

while True:
	try:
		if gdb.threads () == None:
			break
		gdb.execute("xdb")
		gdb.execute("bt")
		gdb.execute("info args")
		gdb.execute("info locals")
		gdb.execute("c")
	except:
		gdb.execute ("quit")