Skip to content

Commit f232a6d

Browse files
committed
increase timeouts
1 parent d77a62b commit f232a6d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/test/pythonFiles/debugging/multiThread.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@
55
print("step2")
66

77
def bar():
8-
print("step2-loop")
8+
print("step2-{},bar".format(threading.current_thread().getName()))
99
time.sleep(2)
10-
print("abcdef")
10+
print("print-{},bar".format(threading.current_thread().getName()))
1111

1212
def foo(x):
1313
while True:
14-
print('step2-{}'.format(threading.current_thread().getName()))
15-
print("step2-while-loop")
14+
print("step2-{},foo-loop".format(threading.current_thread().getName()))
1615
bar()
1716
print("step3")
1817
threading.Thread(target=lambda: foo(2), name="foo").start()

0 commit comments

Comments
 (0)