mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Fix test for determined behaviour with IronPython
This commit is contained in:
@@ -9,11 +9,12 @@ def bar(y):
|
||||
z = 100 + y
|
||||
print("Z=%d"%z)
|
||||
|
||||
t = None
|
||||
def foo(x):
|
||||
global t
|
||||
y = x + 1
|
||||
print("Y=%d"%y)
|
||||
|
||||
global t
|
||||
t = threading.Thread(target=bar, args=(y,))
|
||||
t.start()
|
||||
|
||||
|
||||
@@ -502,7 +502,7 @@ public class PythonDebuggerTest extends PyEnvTestCase {
|
||||
@Override
|
||||
public void before() throws Exception {
|
||||
toggleBreakpoint(getScriptPath(), 9);
|
||||
toggleBreakpoint(getScriptPath(), 13);
|
||||
toggleBreakpoint(getScriptPath(), 15);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user