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

Collapse All | Expand All

(-)src/org/aspectj/systemtest/ajc152/Ajc152Tests.java (+12 lines)
Lines 197-202 Link Here
197
//		setSystemProperty(WeavingAdaptor.WEAVING_ADAPTOR_VERBOSE,"true");
197
//		setSystemProperty(WeavingAdaptor.WEAVING_ADAPTOR_VERBOSE,"true");
198
		runTest("Ensure no weaving without included aspects");
198
		runTest("Ensure no weaving without included aspects");
199
	}
199
	}
200
	
201
	public void testVerifyErrNoTypeCflowField_pr145693() {
202
		runTest("verifyErrNoTypeCflowField");
203
	}
204
	public void testVerifyErrInpathNoTypeCflowField_pr145693() {
205
		runTest("verifyErrInpathNoTypeCflowField");
206
	}
207
	public void testCpathNoTypeCflowField_pr145693() {
208
		runTest("cpathNoTypeCflowField");
209
	}
210
	
211
	
200
212
201
  // tests that can't be included for some reason
213
  // tests that can't be included for some reason
202
214
(-)src/org/aspectj/systemtest/ajc152/ajc152.xml (+14 lines)
Lines 85-90 Link Here
85
      <run class="Sample" classpath="run.jar,apath.jar"/>
85
      <run class="Sample" classpath="run.jar,apath.jar"/>
86
    </ajc-test>    
86
    </ajc-test>    
87
87
88
    <ajc-test dir="bugs152/pr145693" title="verifyErrInpathNoTypeCflowField">
89
      <compile files="Event.java" outjar="cpath.jar"/>
90
      <compile files="Monitor.aj" outjar="apath.jar" classpath="cpath.jar"/>
91
      <compile files="Sample.java" options="-Xlint:ignore" inpath="cpath.jar" aspectpath="apath.jar" outjar="run.jar"/>
92
      <run class="Sample" classpath="run.jar,apath.jar"/>
93
    </ajc-test>    
94
95
    <ajc-test dir="bugs152/pr145693" title="cpathNoTypeCflowField">
96
      <compile files="Event.java" outjar="cpath.jar"/>
97
      <compile files="Monitor.aj" outjar="apath.jar" classpath="cpath.jar"/>
98
      <compile files="Sample.java" options="-Xlint:ignore" classpath="cpath.jar" aspectpath="apath.jar" outjar="run.jar"/>
99
      <run class="Sample" classpath="run.jar,apath.jar"/>
100
    </ajc-test>    
101
88
	<ajc-test dir="bugs152/pr145391" title="itd calling generic method">
102
	<ajc-test dir="bugs152/pr145391" title="itd calling generic method">
89
     <compile files="GenericType.java" options="-1.5"/>
103
     <compile files="GenericType.java" options="-1.5"/>
90
     <run class="GenericType"/>
104
     <run class="GenericType"/>

Return to bug 145693