File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
branches/snap-stage3/src/etc Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 0b48001c28329392b26961eaf1c3ed293a352d6f
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 2f215f644f3c0d5dc02859a125c4c060736bd250
4
+ refs/heads/snap-stage3: 37a823b223007da79da5c067782f6494b4771c4a
5
5
refs/heads/try: f58aad6dce273570fb130b4df008ef9acd5a5be2
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
Original file line number Diff line number Diff line change 30
30
import threading
31
31
import re
32
32
import atexit
33
+ import time
33
34
34
35
# Set this to True for additional output
35
36
DEBUG_OUTPUT = False
@@ -175,6 +176,10 @@ def listen():
175
176
176
177
for line in script_file :
177
178
command = line .strip ()
179
+ if command == "run" or command == "r" or re .match ("^process\s+launch.*" , command ):
180
+ # Before starting to run the program, let the thread sleep a bit, so all
181
+ # breakpoint added events can be processed
182
+ time .sleep (0.5 )
178
183
if command != '' :
179
184
execute_command (command_interpreter , command )
180
185
You can’t perform that action at this time.
0 commit comments