View | Details | Raw Unified | Return to bug 188127
Collapse All | Expand All

(-)src/org/eclipse/jdt/core/tests/eval/DebugEvaluationSetup.java (-1 / +1 lines)
Lines 153-159 Link Here
153
153
154
			// Create target
154
			// Create target
155
			this.target = new TargetInterface();
155
			this.target = new TargetInterface();
156
			this.target.connect("localhost", evalPort, 10000);
156
			this.target.connect("localhost", evalPort, 30000);
157
157
158
			// Create name environment
158
			// Create name environment
159
			this.env = new FileSystem(Util.getJavaClassLibs(), new String[0], null);
159
			this.env = new FileSystem(Util.getJavaClassLibs(), new String[0], null);
(-)src/org/eclipse/jdt/core/tests/eval/SimpleTest.java (-1 / +1 lines)
Lines 289-295 Link Here
289
289
290
	this.requestor = new Requestor();
290
	this.requestor = new Requestor();
291
	this.target = new TargetInterface();
291
	this.target = new TargetInterface();
292
	this.target.connect("localhost", evalPort, 10000);
292
	this.target.connect("localhost", evalPort, 30000);
293
	this.context = new EvaluationContext();
293
	this.context = new EvaluationContext();
294
}
294
}
295
protected void stopEvaluationContext() {
295
protected void stopEvaluationContext() {
(-)src/org/eclipse/jdt/core/tests/eval/EvaluationSetup.java (-1 / +1 lines)
Lines 72-78 Link Here
72
72
73
			// Create target
73
			// Create target
74
			this.target = new TargetInterface();
74
			this.target = new TargetInterface();
75
			this.target.connect("localhost", evalPort, 10000);
75
			this.target.connect("localhost", evalPort, 30000);
76
76
77
			// Create name environment
77
			// Create name environment
78
			this.env = new FileSystem(Util.getJavaClassLibs(), new String[0], null);
78
			this.env = new FileSystem(Util.getJavaClassLibs(), new String[0], null);

Return to bug 188127