View | Details | Raw Unified | Return to bug 134371 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java (+9 lines)
Lines 868-873 Link Here
868
				((IMessage)MyTaskListManager.getWarningMessages().get(0)).getSourceLocation().getLine());
868
				((IMessage)MyTaskListManager.getWarningMessages().get(0)).getSourceLocation().getLine());
869
	}
869
	}
870
	
870
	
871
	public void testPr134371() {
872
		initialiseProject("PR134371");
873
		build("PR134371");
874
		alter("PR134371","inc1");
875
		build("PR134371");
876
		assertTrue("There should be no exceptions handled:\n"+MyErrorHandler.getErrorMessages(),
877
				MyErrorHandler.getErrorMessages().isEmpty());		
878
879
	}
871
	
880
	
872
	// other possible tests:
881
	// other possible tests:
873
	// - memory usage (freemem calls?)
882
	// - memory usage (freemem calls?)
(-)multiIncremental/PR134371/base/A.aj (+5 lines)
Added Link Here
1
public abstract aspect A perthis(annotatedClasses()) {
2
3
	pointcut annotatedClasses();
4
	
5
}
(-)multiIncremental/PR134371/inc1/A.aj (+5 lines)
Added Link Here
1
public aspect A perthis(annotatedClasses()) {
2
3
	pointcut annotatedClasses();
4
	 
5
}

Return to bug 134371