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

(-)src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java (+12 lines)
Lines 300-305 Link Here
300
		checkWasntFullBuild();
300
		checkWasntFullBuild();
301
	}
301
	}
302
	
302
	
303
	public void testPr112736() {
304
		AjdeInteractionTestbed.VERBOSE = true;
305
		initialiseProject("PR112736");
306
		build("PR112736");
307
		checkWasFullBuild();
308
		String fileC2 = getWorkingDir().getAbsolutePath() + File.separatorChar + "PR112736" + File.separatorChar + "src" + File.separatorChar + "pack" + File.separatorChar + "A.java";
309
		(new File(fileC2)).delete();
310
		alter("PR112736","inc1");
311
		build("PR112736");
312
		checkWasntFullBuild();
313
	}
314
	
303
/*	public void testPr111779() {
315
/*	public void testPr111779() {
304
		super.VERBOSE=true;
316
		super.VERBOSE=true;
305
		initialiseProject("PR111779");
317
		initialiseProject("PR111779");
(-)multiIncremental/PR112736/base/src/pack/A.java (+7 lines)
Added Link Here
1
package pack;
2
3
public aspect A {
4
5
	public int C.x = 2;
6
	
7
}
(-)multiIncremental/PR112736/base/src/pack/C.java (+5 lines)
Added Link Here
1
package pack;
2
3
public class C {
4
5
}
(-)multiIncremental/PR112736/inc1/src/pack/A.aj (+7 lines)
Added Link Here
1
package pack;
2
3
public aspect A {
4
5
	public int C.x = 2;
6
	
7
}

Return to bug 112736