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

(-)src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java (+24 lines)
Lines 300-305 Link Here
300
		checkWasntFullBuild();
300
		checkWasntFullBuild();
301
	}
301
	}
302
	
302
	
303
	public void testPr93310_1() {
304
		AjdeInteractionTestbed.VERBOSE = true;
305
		initialiseProject("PR93310_1");
306
		build("PR93310_1");
307
		checkWasFullBuild();
308
		String fileC2 = getWorkingDir().getAbsolutePath() + File.separatorChar + "PR93310_1" + File.separatorChar + "src" + File.separatorChar + "pack" + File.separatorChar + "C2.java";
309
		(new File(fileC2)).delete();
310
		alter("PR93310_1","inc1");
311
		build("PR93310_1");
312
		checkWasntFullBuild();
313
	}
314
	
315
	public void testPr93310_2() {
316
		AjdeInteractionTestbed.VERBOSE = true;
317
		initialiseProject("PR93310_2");
318
		build("PR93310_2");
319
		checkWasFullBuild();
320
		String fileC2 = getWorkingDir().getAbsolutePath() + File.separatorChar + "PR93310_2" + File.separatorChar + "src" + File.separatorChar + "pack" + File.separatorChar + "C2.java";
321
		(new File(fileC2)).delete();
322
		alter("PR93310_2","inc1");
323
		build("PR93310_2");
324
		checkWasntFullBuild();
325
	}
326
	
303
/*	public void testPr111779() {
327
/*	public void testPr111779() {
304
		super.VERBOSE=true;
328
		super.VERBOSE=true;
305
		initialiseProject("PR111779");
329
		initialiseProject("PR111779");
(-)multiIncremental/PR93310_1/base/src/pack/A.aj (+9 lines)
Added Link Here
1
package pack;
2
3
public aspect A {
4
5
	pointcut p1() : execution(* *.*(..));
6
	
7
	before() : p1() {}
8
	
9
}
(-)multiIncremental/PR93310_1/base/src/pack/C1.java (+7 lines)
Added Link Here
1
package pack;
2
3
public class C1 {
4
5
	public void method1() {}
6
		
7
}
(-)multiIncremental/PR93310_1/base/src/pack/C2.java (+10 lines)
Added Link Here
1
package pack;
2
3
public class C2 {
4
	
5
}
6
7
aspect Monitor {
8
	pointcut pc1() : execution(* *.*(..));
9
    before() : pc1() {}
10
}
(-)multiIncremental/PR93310_1/inc1/src/pack/C2.aj (+10 lines)
Added Link Here
1
package pack;
2
3
public class C2 {
4
	
5
}
6
7
//aspect Monitor {
8
//pointcut pc1() : execution(* *.*(..));
9
//before() : pc1() {}
10
//}
(-)multiIncremental/PR93310_2/base/src/pack/A.aj (+9 lines)
Added Link Here
1
package pack;
2
3
public aspect A {
4
5
	pointcut p1() : execution(* *.*(..));
6
	
7
	before() : p1() {}
8
	
9
}
(-)multiIncremental/PR93310_2/base/src/pack/C1.java (+7 lines)
Added Link Here
1
package pack;
2
3
public class C1 {
4
5
	public void method1() {}
6
		
7
}
(-)multiIncremental/PR93310_2/base/src/pack/C2.java (+10 lines)
Added Link Here
1
package pack;
2
3
public class C2 {
4
	
5
}
6
7
aspect Monitor {
8
	pointcut pc1() : execution(* *.*(..));
9
    before() : pc1() {}
10
}
(-)multiIncremental/PR93310_2/inc1/src/pack/C2.aj (+10 lines)
Added Link Here
1
package pack;
2
3
public class C2 {
4
	
5
}
6
7
aspect Monitor {
8
	pointcut pc1() : execution(* *.*(..));
9
    before() : pc1() {}
10
}

Return to bug 93310