You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ajc1921.xml 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. <!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd"[]>
  2. <!--
  3. JDK 21 (https://openjdk.org/projects/jdk/21/):
  4. Language features:
  5. JEP 430: String Templates (Preview)
  6. JEP 440: Record Patterns
  7. JEP 441: Pattern Matching for switch
  8. JEP 443: Unnamed Patterns and Variables (Preview)
  9. JEP 445: Unnamed Classes and Instance Main Methods (Preview)
  10. API or JVM only:
  11. JEP 431: Sequenced Collections
  12. JEP 439: Generational ZGC
  13. JEP 442: Foreign Function & Memory API (Third Preview)
  14. JEP 444: Virtual Threads
  15. JEP 446: Scoped Values (Preview)
  16. JEP 448: Vector API (Sixth Incubator)
  17. JEP 449: Deprecate the Windows 32-bit x86 Port for Removal
  18. JEP 451: Prepare to Disallow the Dynamic Loading of Agents
  19. JEP 452: Key Encapsulation Mechanism API
  20. JEP 453: Structured Concurrency (Preview)
  21. -->
  22. <suite>
  23. <!-- Java 21 final, Java 17, 18, 19, 20 preview -->
  24. <ajc-test dir="features1921/java21" vm="21" title="switch pattern matching preview 4 java">
  25. <compile files="SwitchPatternPreview4OK.java" options="-21" />
  26. <run class="SwitchPatternPreview4OK" vmargs="">
  27. <message/>
  28. <stdout>
  29. <line text="null" />
  30. <line text="int 123" />
  31. <line text="long 999" />
  32. <line text="double 12.340000" />
  33. <line text="String foo" />
  34. <line text="[123, foo, 999, 12.34]" />
  35. <line text="Non-circle" />
  36. <line text="Small circle" />
  37. <line text="Large circle" />
  38. <line text="Sealed sub-class A" />
  39. <line text="Sealed sub-class B" />
  40. <line text="Sealed sub-record C" />
  41. <line text="absolute value 1: -1" />
  42. <line text="other integer: 0" />
  43. <line text="positive integer: 42" />
  44. <line text="other integer: -99" />
  45. <line text="positive integer: 123" />
  46. <line text="value unavailable: null" />
  47. <line text="42" />
  48. </stdout>
  49. </run>
  50. </ajc-test>
  51. <!-- Java 21 final, Java 17, 18, 19, 20 preview -->
  52. <ajc-test dir="features1920/java20" vm="21" title="switch pattern matching preview 4 error">
  53. <compile files="SwitchPatternPreview4Error.java" options="-21">
  54. <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
  55. <message kind="error" file="SwitchPatternPreview4Error.java" text="This case label is dominated by one of the preceding case labels"/>
  56. </compile>
  57. </ajc-test>
  58. <!-- Java 21 final, Java 17, 18, 19, 20 preview -->
  59. <ajc-test dir="features1921/java21" vm="21" title="switch pattern matching preview 3 aspect">
  60. <compile files="SwitchPatternPreview3Aspect.aj" options="-21" />
  61. <run class="Application" vmargs="">
  62. <stdout>
  63. <line text="null" />
  64. <line text="int 123" />
  65. <line text="long 999" />
  66. <line text="double 12.340000" />
  67. <line text="String foo" />
  68. <line text="[123, foo, 999, 12.34]" />
  69. <line text="Non-circle" />
  70. <line text="Small circle" />
  71. <line text="Large circle" />
  72. <line text="Sealed sub-class A" />
  73. <line text="Sealed sub-class B" />
  74. <line text="Sealed sub-record C" />
  75. <line text="absolute value 1: -1" />
  76. <line text="other integer: 0" />
  77. <line text="positive integer: 42" />
  78. <line text="other integer: -99" />
  79. <line text="positive integer: 123" />
  80. <line text="value unavailable: null" />
  81. </stdout>
  82. </run>
  83. </ajc-test>
  84. <!-- Java 21 final, Java 17, 18, 19, 20 preview -->
  85. <ajc-test dir="features198/java17" vm="21" title="switch pattern matching error">
  86. <compile files="SwitchPatternError.java" options="-21">
  87. <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
  88. <message kind="error" file="SwitchPatternError.java" text="This case label is dominated by one of the preceding case labels"/>
  89. </compile>
  90. </ajc-test>
  91. <!-- Java 21 final, Java 17, 18, 19, 20 preview -->
  92. <ajc-test dir="features1919/java19" vm="21" title="switch pattern matching preview 3 error 1">
  93. <compile files="SwitchPatternPreview3Error1.java" options="-21">
  94. <!-- No more error message as of Java 21 -->
  95. <!--<message kind="error" file="SwitchPatternPreview3Error1.java" text="This case label is dominated by one of the preceding case labels"/>-->
  96. </compile>
  97. </ajc-test>
  98. <!-- Java 21 final, Java 17, 18, 19, 20 preview -->
  99. <ajc-test dir="features1919/java19" vm="21" title="switch pattern matching preview 3 error 2">
  100. <compile files="SwitchPatternPreview3Error2.java" options="-21">
  101. <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
  102. <message kind="error" file="SwitchPatternPreview3Error2.java" text="This case label is dominated by one of the preceding case labels"/>
  103. </compile>
  104. </ajc-test>
  105. <!-- Java 21 final, Java 19, 20 preview -->
  106. <ajc-test dir="features1919/java19" vm="21" title="record patterns">
  107. <compile files="RecordPatternsPreview1OK.java" options="-21"/>
  108. </ajc-test>
  109. <!-- Java 21 final, Java 19, 20 preview -->
  110. <ajc-test dir="features1919/java19" vm="21" title="record patterns error">
  111. <compile files="RecordPatternsPreview1Error.java" options="-21">
  112. <!-- https://github.com/eclipse-jdt/eclipse.jdt.core/issues/450 (fixed for preview 2 in Eclipse 2023-03, 4.27) -->
  113. <!--
  114. <message kind="error" file="RecordPatternsPreview1Error.java" text="Raw types are not allowed in record patterns"/>
  115. <message kind="error" file="RecordPatternsPreview1Error.java" text="Raw types are not allowed in record patterns"/>
  116. -->
  117. </compile>
  118. <run class="RecordPatternsPreview1Error" vmargs="">
  119. <stdout>
  120. <line text="I'm a box"/>
  121. <line text="I'm a box"/>
  122. </stdout>
  123. </run>
  124. </ajc-test>
  125. <!-- Java 21 final, Java 19, 20 preview -->
  126. <ajc-test dir="features1921/java21" vm="21" title="record patterns exhaustiveness 1">
  127. <compile files="RecordPatternsPreview1ExhaustivenessOK1.java" options="-21"/>
  128. <run class="RecordPatternsPreview1ExhaustivenessOK1" vmargs="">
  129. <stdout>
  130. <line text="y"/>
  131. <line text="a"/>
  132. </stdout>
  133. </run>
  134. </ajc-test>
  135. <!-- Java 21 final, Java 19, 20 preview -->
  136. <ajc-test dir="features1921/java21" vm="21" title="record patterns exhaustiveness aspect">
  137. <compile files="RecordPatternsPreview1ExhaustivenessAspect.aj" options="-21"/>
  138. <run class="RecordPatternsPreview1ExhaustivenessAspect" vmargs="">
  139. <stdout>
  140. <line text="y"/>
  141. <line text="a"/>
  142. <line text="Pair[x=C@000, y=D@000]"/>
  143. </stdout>
  144. </run>
  145. </ajc-test>
  146. <!-- Java 21 final, Java 19, 20 preview -->
  147. <ajc-test dir="features1919/java19" vm="21" title="record patterns aspect">
  148. <compile files="RecordPatternsPreview1Aspect.aj" options="-21"/>
  149. <run class="RecordPatternsPreview1Aspect" vmargs="">
  150. <stdout>
  151. <line text="9"/>
  152. <line text="14"/>
  153. <line text="Doing something with Point[x=2, y=7]"/>
  154. <line text="Upper-left color: RED"/>
  155. <line text="Upper-left color: RED"/>
  156. <line text="Upper-left x coordinate: 1"/>
  157. <line text="Doing something with Rectangle[upperLeft=ColoredPoint[p=Point[x=1, y=6], c=RED], lowerRight=ColoredPoint[p=Point[x=4, y=6], c=BLUE]]"/>
  158. </stdout>
  159. </run>
  160. </ajc-test>
  161. <!-- Java 21 final, Java 19, 20 preview -->
  162. <ajc-test dir="features1919/java19" vm="21" title="record patterns exhaustiveness error">
  163. <compile files="RecordPatternsPreview1ExhaustivenessError.java" options="-21">
  164. <message kind="error" file="RecordPatternsPreview1ExhaustivenessError.java" text="An enhanced switch statement should be exhaustive; a default label expected"/>
  165. </compile>
  166. </ajc-test>
  167. <!-- Java 21 final, Java 19, 20 preview -->
  168. <ajc-test dir="features1919/java19" vm="21" title="record patterns exhaustiveness 2">
  169. <compile files="RecordPatternsPreview1ExhaustivenessOK2.java" options="-21"/>
  170. <run class="RecordPatternsPreview1ExhaustivenessOK2" vmargs="">
  171. <stdout>
  172. <line text="Bob 12"/>
  173. </stdout>
  174. </run>
  175. </ajc-test>
  176. <!-- Java 21 preview -->
  177. <ajc-test dir="features1921/java21" vm="21" title="string patterns">
  178. <compile files="StringPatternsPreview1.java" options="--enable-preview -21"/>
  179. <run class="StringPatternsPreview1" vmargs="--enable-preview">
  180. <stdout ordered="yes">
  181. <line text="Bill Duck"/>
  182. <line text="10 + 20 = 30"/>
  183. <line text="You have a special New Year's sale discount waiting for you!"/>
  184. <line text="Access at 2011-11-11 11:11:11 from localhost/127.0.0.1"/>
  185. <line text="The file _dummy.dat does not exist"/>
  186. <line text="The time is 11:11:11 or roughly eleven after eleven"/>
  187. <line text="apples, oranges, peaches"/>
  188. <line text=""/>
  189. <line text="&lt;html&gt;"/>
  190. <line text=" &lt;head&gt;"/>
  191. <line text=" &lt;title&gt;My Web Page&lt;/title&gt;"/>
  192. <line text=" &lt;/head&gt;"/>
  193. <line text=" &lt;body&gt;"/>
  194. <line text=" &lt;p&gt;Hello, world&lt;/p&gt;"/>
  195. <line text=" &lt;/body&gt;"/>
  196. <line text="&lt;/html&gt;"/>
  197. <line text=""/>
  198. <line text="Description Width Height Area"/>
  199. <line text="Alfa 17.80 31.40 558.92"/>
  200. <line text="Bravo 9.60 12.40 119.04"/>
  201. <line text="Charlie 7.10 11.23 79.73"/>
  202. <line text=" Total 757.69"/>
  203. <line text=""/>
  204. <line text="My name is Joan"/>
  205. </stdout>
  206. </run>
  207. </ajc-test>
  208. <!-- Java 21 preview -->
  209. <ajc-test dir="features1921/java21" vm="21" title="string patterns aspect">
  210. <compile files="StringPatternsPreview1Aspect.aj" options="--enable-preview -21"/>
  211. <run class="StringPatternsPreview1Aspect" vmargs="--enable-preview">
  212. <stdout ordered="yes">
  213. <line text="execution(void StringPatternsPreview1Aspect.main(String[]))"/>
  214. <line text="Bill Duck"/>
  215. <line text="10 + 20 = 30"/>
  216. <line text="You have a special New Year's sale discount waiting for you!"/>
  217. <line text="Access at 2011-11-11 11:11:11 from localhost/127.0.0.1"/>
  218. <line text="The file _dummy.dat does not exist"/>
  219. <line text="The time is 11:11:11 or roughly eleven after eleven"/>
  220. <line text="apples, oranges, peaches"/>
  221. <line text=""/>
  222. <line text="&lt;html&gt;"/>
  223. <line text=" &lt;head&gt;"/>
  224. <line text=" &lt;title&gt;My Web Page&lt;/title&gt;"/>
  225. <line text=" &lt;/head&gt;"/>
  226. <line text=" &lt;body&gt;"/>
  227. <line text=" &lt;p&gt;Hello, world&lt;/p&gt;"/>
  228. <line text=" &lt;/body&gt;"/>
  229. <line text="&lt;/html&gt;"/>
  230. <line text=""/>
  231. <line text="Description Width Height Area"/>
  232. <line text="Alfa 17.80 31.40 558.92"/>
  233. <line text="Bravo 9.60 12.40 119.04"/>
  234. <line text="Charlie 7.10 11.23 79.73"/>
  235. <line text=" Total 757.69"/>
  236. <line text=""/>
  237. <line text="My name is Joan"/>
  238. </stdout>
  239. </run>
  240. </ajc-test>
  241. <!-- Java 21 preview -->
  242. <!-- TODO: Activate after https://github.com/eclipse-jdt/eclipse.jdt.core/issues/893 is done -->
  243. <ajc-test dir="features1921/java21" vm="21" title="unnamed patterns">
  244. <compile files="UnnamedPatternsPreview1.java" options="--enable-preview -21"/>
  245. <run class="UnnamedPatternsPreview1" vmargs="--enable-preview">
  246. <stdout ordered="yes">
  247. <line text="2"/>
  248. <line text="side effect"/>
  249. <line text="0"/>
  250. <line text="1"/>
  251. <line text="java.awt.Point[x=1,y=2]"/>
  252. <line text="java.awt.Point[x=4,y=5]"/>
  253. <line text="java.awt.Point[x=1,y=0]"/>
  254. <line text="java.awt.Point[x=4,y=0]"/>
  255. <line text="Bad number: 123xy"/>
  256. <line text="Doing something within scoped context"/>
  257. <line text="Closing scoped context"/>
  258. <line text="{ONE=NODATA, TWO=NODATA, THREE=NODATA}"/>
  259. </stdout>
  260. </run>
  261. </ajc-test>
  262. <!-- Java 21 preview -->
  263. <!-- TODO: Activate after https://github.com/eclipse-jdt/eclipse.jdt.core/issues/893 is done -->
  264. <ajc-test dir="features1921/java21" vm="21" title="unnamed patterns aspect">
  265. <compile files="UnnamedPatternsPreview1Aspect.aj" options="--enable-preview -21"/>
  266. <run class="UnnamedPatternsPreview1Aspect" vmargs="--enable-preview">
  267. <stdout ordered="yes">
  268. <line text="execution(void UnnamedPatternsPreview1Aspect.main(String[]))"/>
  269. <line text="2"/>
  270. <line text="side effect"/>
  271. <line text="0"/>
  272. <line text="1"/>
  273. <line text="java.awt.Point[x=1,y=2]"/>
  274. <line text="java.awt.Point[x=4,y=5]"/>
  275. <line text="java.awt.Point[x=1,y=0]"/>
  276. <line text="java.awt.Point[x=4,y=0]"/>
  277. <line text="Bad number: 123xy"/>
  278. <line text="Doing something within scoped context"/>
  279. <line text="Closing scoped context"/>
  280. <line text="{ONE=NODATA, TWO=NODATA, THREE=NODATA}"/>
  281. </stdout>
  282. </run>
  283. </ajc-test>
  284. <!-- Java 21 preview -->
  285. <ajc-test dir="new" vm="21" title="underscore can still be used in pointcut patterns on Java 21+ - 1">
  286. <compile files="NotCharInPointcut.java" options="--enable-preview -21">
  287. <message kind="warning" line="51" text="advice defined in A has not been applied [Xlint:adviceDidNotMatch]"/>
  288. <message kind="warning" line="52" text="advice defined in A has not been applied [Xlint:adviceDidNotMatch]"/>
  289. <message kind="warning" line="53" text="advice defined in A has not been applied [Xlint:adviceDidNotMatch]"/>
  290. </compile>
  291. <run class="NotCharInPointcut" vmargs="--enable-preview"/>
  292. </ajc-test>
  293. <!-- Java 21 preview -->
  294. <ajc-test dir="features1921/java21" vm="21" title="underscore can still be used in pointcut patterns on Java 21+ - 2">
  295. <compile files="UnderscoreInPointcutAspect.aj" options="--enable-preview -21"/>
  296. <run class="UnderscoreInPointcutAspect" vmargs="--enable-preview">
  297. <stdout>
  298. <line text="[starts with underscore] execution(int UnderTest._add(int, int)) -> 12, 4"/>
  299. <line text="[contains underscore] execution(int UnderTest._add(int, int)) -> 12, 4"/>
  300. <line text="16"/>
  301. <line text="[starts with underscore] execution(int UnderTest._subtract(int, int)) -> 12, 4"/>
  302. <line text="[contains underscore] execution(int UnderTest._subtract(int, int)) -> 12, 4"/>
  303. <line text="8"/>
  304. <line text="[ends with underscore] execution(int UnderTest.multiply_(int, int)) -> 12, 4"/>
  305. <line text="[contains underscore] execution(int UnderTest.multiply_(int, int)) -> 12, 4"/>
  306. <line text="48"/>
  307. <line text="[ends with underscore] execution(int UnderTest.divide_(int, int)) -> 12, 4"/>
  308. <line text="[contains underscore] execution(int UnderTest.divide_(int, int)) -> 12, 4"/>
  309. <line text="3"/>
  310. <line text="[contains underscore] execution(int UnderTest.power_of(int, int)) -> 3, 3"/>
  311. <line text="27"/>
  312. <line text="[no underscore] execution(int UnderTest.squareRoot(int)) -> 49"/>
  313. <line text="7"/>
  314. </stdout>
  315. </run>
  316. </ajc-test>
  317. <!-- Java 21 preview -->
  318. <ajc-test dir="features1921/java21" vm="21" title="named class with simple main method">
  319. <!-- Compiles without preview mode, but needs preview mode to run -->
  320. <compile files="NamedClassWithSimpleMainMethodPreview1.java" options="-21"/>
  321. <run class="NamedClassWithSimpleMainMethodPreview1" vmargs="--enable-preview">
  322. <stdout>
  323. <line text="Hello world!"/>
  324. </stdout>
  325. </run>
  326. </ajc-test>
  327. <!-- Java 21 preview -->
  328. <ajc-test dir="features1921/java21" vm="21" title="named aspect with simple main method">
  329. <!-- Compiles without preview mode, but needs preview mode to run -->
  330. <compile files="NamedAspectWithSimpleMainMethodPreview1.aj" options="-21"/>
  331. <run class="NamedAspectWithSimpleMainMethodPreview1" vmargs="--enable-preview">
  332. <stdout>
  333. <line text="Hello world!"/>
  334. </stdout>
  335. </run>
  336. </ajc-test>
  337. <!-- Java 21 preview -->
  338. <!-- TODO: Activate after https://github.com/eclipse-jdt/eclipse.jdt.core/issues/1106 is done -->
  339. <ajc-test dir="features1921/java21" vm="21" title="unnamed class with simple main method">
  340. <compile files="UnnamedClassWithSimpleMainMethodPreview1.java" options="--enable-preview -21"/>
  341. <run class="UnnamedClassWithSimpleMainMethodPreview1" vmargs="--enable-preview">
  342. <stdout>
  343. <line text="Hello world!"/>
  344. </stdout>
  345. </run>
  346. </ajc-test>
  347. <!-- https://github.com/eclipse-aspectj/aspectj/issues/279, AspectJ 1.9.21.1 -->
  348. <ajc-test dir="bugs1921/github_279" vm="8" title="same class woven concurrently in parallel-capable classloader">
  349. <compile files="Application.java Greeter.java GreeterImpl.java ParallelCapableClassLoader.java" options="-8"/>
  350. <compile files="HelloInterceptor.java" options="-8 -Xlint:ignore"/>
  351. <!-- Problem only reproduces in forked JVM with java agent, hence Ant build -->
  352. <ant file="ant.xml" target="same class woven concurrently in parallel-capable classloader" verbose="true"/>
  353. </ajc-test>
  354. <!--
  355. https://github.com/eclipse-aspectj/aspectj/issues/285, AspectJ 1.9.21.2
  356. See also org.aspectj.systemtest.ajc171.NewFeatures::testSharedCache. This is a quasi negative test missing back in
  357. 1.7.2 when the shared cache was introduced.
  358. -->
  359. <ajc-test dir="bugs1921/github_285" title="shared cache negative test">
  360. <compile files="Unwoven.java" options="-1.5"/>
  361. <run class="Unwoven" ltw="aop.xml" usefullltw="true"
  362. vmargs="-Daj.weaving.cache.enabled=true -Daj.weaving.cache.dir=./ -Daj.weaving.cache.impl=shared">
  363. <stdout>
  364. <line text="Hello world"/>
  365. </stdout>
  366. <!--
  367. Nothing should be printed on stderr, especially no fatal NPE with message
  368. 'Cannot read the array length because "b" is null' and subsequent ajcore.*.txt
  369. -->
  370. <stderr/>
  371. </run>
  372. </ajc-test>
  373. <!--
  374. https://github.com/eclipse-aspectj/aspectj/issues/288,
  375. https://github.com/eclipse-aspectj/aspectj/issues/141, AspectJ 1.9.21.2
  376. -->
  377. <ajc-test dir="bugs1921/github_288" title="memory leak for @AspectJ nested, non-inlined around-advice - AssertionError">
  378. <compile files="NestedAroundClosureMemoryLeakTest.java MemoryHog.java FirstAspect.aj SecondAspect.aj" options="-1.8 -XnoInline"/>
  379. <run class="NestedAroundClosureMemoryLeakTest" vmargs="-ea --add-opens java.base/java.lang=ALL-UNNAMED">
  380. <stdout>
  381. <line text="FirstAspect"/>
  382. <line text="SecondAspect"/>
  383. <line text="Executing task"/>
  384. <line text="Finished executing tasks"/>
  385. <line text="Finished executing GC"/>
  386. <line text="Test passed - all inheritable thread-locals are null after GC"/>
  387. </stdout>
  388. <!-- No AssertionError on stderr-->
  389. <stderr/>
  390. </run>
  391. </ajc-test>
  392. <!--
  393. https://github.com/eclipse-aspectj/aspectj/issues/288,
  394. https://github.com/eclipse-aspectj/aspectj/issues/141, AspectJ 1.9.21.2
  395. -->
  396. <ajc-test dir="bugs1921/github_288" title="memory leak for @AspectJ nested, non-inlined around-advice - OutOfMemoryError">
  397. <compile files="NestedAroundClosureMemoryLeakTest.java MemoryHog.java FirstAspect.aj SecondAspect.aj" options="-1.8 -XnoInline"/>
  398. <run class="NestedAroundClosureMemoryLeakTest" vmargs="-ea --add-opens java.base/java.lang=ALL-UNNAMED -Xmx512M" options="oom">
  399. <stdout>
  400. <line text="FirstAspect"/>
  401. <line text="SecondAspect"/>
  402. <line text="Executing task"/>
  403. <line text="FirstAspect"/>
  404. <line text="SecondAspect"/>
  405. <line text="Executing task"/>
  406. <line text="FirstAspect"/>
  407. <line text="SecondAspect"/>
  408. <line text="Executing task"/>
  409. <line text="FirstAspect"/>
  410. <line text="SecondAspect"/>
  411. <line text="Executing task"/>
  412. <line text="FirstAspect"/>
  413. <line text="SecondAspect"/>
  414. <line text="Executing task"/>
  415. <line text="Finished executing tasks"/>
  416. <line text="Finished executing GC"/>
  417. <line text="Test passed - no OutOfMemoryError due to inheritable thread-locals memory leak"/>
  418. </stdout>
  419. <!-- No fatal OutOfMemoryError on stderr -->
  420. <stderr/>
  421. </run>
  422. </ajc-test>
  423. </suite>