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

(-)src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java (-1 / +8 lines)
Lines 466-472 Link Here
466
		alter("PR113257","inc1");
466
		alter("PR113257","inc1");
467
		build("PR113257");
467
		build("PR113257");
468
	}
468
	}
469
	
469
470
	public void testPr123612() {
471
		initialiseProject("PR123612");
472
		build("PR123612");
473
		alter("PR123612","inc1");
474
		build("PR123612");
475
		checkWasntFullBuild();
476
	}
470
	
477
	
471
	// other possible tests:
478
	// other possible tests:
472
	// - memory usage (freemem calls?)
479
	// - memory usage (freemem calls?)
(-)multiIncremental/PR123612/base/A.aj (+8 lines)
Added Link Here
1
public aspect A {
2
	declare @type : C : @MyAnnotation;
3
}
4
@interface MyAnnotation {	
5
}
6
7
class C {
8
}
(-)multiIncremental/PR123612/inc1/A.aj (+8 lines)
Added Link Here
1
public aspect A {
2
//	declare @type : C : @MyAnnotation;
3
}
4
@interface MyAnnotation {	
5
}
6
7
class C {
8
}

Return to bug 123612