Path: blob/master/test/functional/cmdLineTests/lockWordAlignment/alignment.xml
6004 views
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>12<!--3Copyright (c) 2015, 2019 IBM Corp. and others45This program and the accompanying materials are made available under6the terms of the Eclipse Public License 2.0 which accompanies this7distribution and is available at https://www.eclipse.org/legal/epl-2.0/8or the Apache License, Version 2.0 which accompanies this distribution and9is available at https://www.apache.org/licenses/LICENSE-2.0.1011This Source Code may also be made available under the following12Secondary Licenses when the conditions for such availability set13forth in the Eclipse Public License, v. 2.0 are satisfied: GNU14General Public License, version 2 with the GNU Classpath15Exception [1] and GNU General Public License, version 2 with the16OpenJDK Assembly Exception [2].1718[1] https://www.gnu.org/software/classpath/license.html19[2] http://openjdk.java.net/legal/assembly-exception.html2021SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception22-->2324<!DOCTYPE suite SYSTEM "cmdlinetester.dtd">2526<suite id="J9 Field Alignment Command-Line Option Tests" timeout="300">27<variable name="TESTSBOOTCLASSPATH" value="-Xbootclasspath/a:$TESTSJARPATH$" />28<variable name="OBJECTTESTSBOOTCLASSPATH" value="--patch-module java.base=$OBJECTJARPATH$" />29<variable name="JAVAPBOOTCLASSPATH" value="-bootclasspath $OBJECTJARPATH$" />303132<variable name="PRIV_FIELD1" value=".*" />33<variable name="PRIV_FIELD2" value=".*" />34<variable name="PRIV_FIELD3" value=".*" />353637<if testVariable="JDK_VERSION" testValue="8" resultVariable="OBJECTTESTSBOOTCLASSPATH" resultValue="-Xbootclasspath/p:$OBJECTJARPATH$"/>3839<if testVariable="OLWMODE" testValue="standard" resultVariable="OBJECTTESTSBOOTCLASSPATH" resultValue=" "/>40<if testVariable="OLWMODE" testValue="standard" resultVariable="JAVAPBOOTCLASSPATH" resultValue=" "/>4142<if testVariable="OLWMODE" testValue="d" resultVariable="PRIV_FIELD1" resultValue="\W*private double d;"/>4344<if testVariable="OLWMODE" testValue="i" resultVariable="PRIV_FIELD1" resultValue="\W*private int i;"/>4546<if testVariable="OLWMODE" testValue="ii" resultVariable="PRIV_FIELD1" resultValue="\W*private int i;"/>47<if testVariable="OLWMODE" testValue="ii" resultVariable="PRIV_FIELD2" resultValue="\W*private int ii;"/>4849<if testVariable="OLWMODE" testValue="iii" resultVariable="PRIV_FIELD1" resultValue="\W*private int i;"/>50<if testVariable="OLWMODE" testValue="iii" resultVariable="PRIV_FIELD2" resultValue="\W*private int ii;"/>51<if testVariable="OLWMODE" testValue="iii" resultVariable="PRIV_FIELD3" resultValue="\W*private int iii;"/>5253<echo value=" "/>54<echo value="#######################################################"/>55<echo value="Running the tests with the following settings:"/>56<echo value="OBJECTTESTSBOOTCLASSPATH = $OBJECTTESTSBOOTCLASSPATH$"/>57<echo value="PRIV_FIELD1 = $PRIV_FIELD1$"/>58<echo value="PRIV_FIELD2 = $PRIV_FIELD2$"/>59<echo value="PRIV_FIELD3 = $PRIV_FIELD3$"/>60<echo value="#######################################################"/>61<echo value=" "/>6263<test id="Check whether Object contains necessary private fields if any">64<command>$EXEP$ -p $JAVAPBOOTCLASSPATH$ java/lang/Object</command>65<return value="0" />66<output type="required" caseSensitive="yes" regex="yes">$PRIV_FIELD1$</output>67<output type="required" caseSensitive="yes" regex="yes">$PRIV_FIELD2$</output>68<output type="required" caseSensitive="yes" regex="yes">$PRIV_FIELD3$</output>69</test>7071<test id="Check Object is aligned">72<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main java.lang.Object</command>73<return value="0" />74<output type="failure" caseSensitive="no" regex="no">not aligned</output>75<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>76<output type="failure" caseSensitive="yes" regex="no">Exception:</output>77<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>78</test>7980<test id="Check Object is still aligned with -Xlockword:noLockword">81<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=java.lang.Object main java.lang.Object</command>82<return value="0" />83<output type="failure" caseSensitive="no" regex="no">not aligned</output>84<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>85<output type="failure" caseSensitive="yes" regex="no">Exception:</output>86<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>87</test>8889<test id="Check I is aligned">90<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main level_2_I</command>91<return value="0" />92<output type="failure" caseSensitive="no" regex="no">not aligned</output>93<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>94<output type="failure" caseSensitive="yes" regex="no">Exception:</output>95<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>96</test>9798<test id="Check I is still aligned with -Xlockword:noLockword">99<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=level_2_I main level_2_I</command>100<return value="0" />101<output type="failure" caseSensitive="no" regex="no">not aligned</output>102<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>103<output type="failure" caseSensitive="yes" regex="no">Exception:</output>104<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>105</test>106107<test id="Check J is aligned">108<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main level_2_J</command>109<return value="0" />110<output type="failure" caseSensitive="no" regex="no">not aligned</output>111<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>112<output type="failure" caseSensitive="yes" regex="no">Exception:</output>113<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>114</test>115116<test id="Check J is still aligned with -Xlockword:noLockword">117<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=level_2_J main level_2_J</command>118<return value="0" />119<output type="failure" caseSensitive="no" regex="no">not aligned</output>120<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>121<output type="failure" caseSensitive="yes" regex="no">Exception:</output>122<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>123</test>124125<test id="Check O is aligned">126<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main level_2_O</command>127<return value="0" />128<output type="failure" caseSensitive="no" regex="no">not aligned</output>129<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>130<output type="failure" caseSensitive="yes" regex="no">Exception:</output>131<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>132</test>133134<test id="Check O is still aligned with -Xlockword:noLockword">135<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=level_2_O main level_2_O</command>136<return value="0" />137<output type="failure" caseSensitive="no" regex="no">not aligned</output>138<output type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>139<output type="failure" caseSensitive="yes" regex="no">Exception:</output>140<output type="failure" caseSensitive="yes" regex="no">Processing dump event</output>141</test>142143<!-- GENERATED STARTS -->144145<test id="Check ijo_extends_level_2_I is aligned">146<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main ijo_extends_level_2_I</command>147<return value="0" />148<output type="failure">not aligned</output>149<output type="failure">Unhandled Exception</output>150<output type="failure">Exception:</output>151<output type="failure">Processing dump event</output>152</test>153<test id="Check ijo_extends_level_2_I is still aligned with -Xlockword:noLockword">154<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=ijo_extends_level_2_I main ijo_extends_level_2_I</command>155<return value="0" />156<output type="failure">not aligned</output>157<output type="failure">Unhandled Exception</output>158<output type="failure">Exception:</output>159<output type="failure">Processing dump event</output>160</test>161<test id="Check ioj_extends_level_2_I is aligned">162<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main ioj_extends_level_2_I</command>163<return value="0" />164<output type="failure">not aligned</output>165<output type="failure">Unhandled Exception</output>166<output type="failure">Exception:</output>167<output type="failure">Processing dump event</output>168</test>169<test id="Check ioj_extends_level_2_I is still aligned with -Xlockword:noLockword">170<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=ioj_extends_level_2_I main ioj_extends_level_2_I</command>171<return value="0" />172<output type="failure">not aligned</output>173<output type="failure">Unhandled Exception</output>174<output type="failure">Exception:</output>175<output type="failure">Processing dump event</output>176</test>177<test id="Check jio_extends_level_2_I is aligned">178<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main jio_extends_level_2_I</command>179<return value="0" />180<output type="failure">not aligned</output>181<output type="failure">Unhandled Exception</output>182<output type="failure">Exception:</output>183<output type="failure">Processing dump event</output>184</test>185<test id="Check jio_extends_level_2_I is still aligned with -Xlockword:noLockword">186<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=jio_extends_level_2_I main jio_extends_level_2_I</command>187<return value="0" />188<output type="failure">not aligned</output>189<output type="failure">Unhandled Exception</output>190<output type="failure">Exception:</output>191<output type="failure">Processing dump event</output>192</test>193<test id="Check joi_extends_level_2_I is aligned">194<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main joi_extends_level_2_I</command>195<return value="0" />196<output type="failure">not aligned</output>197<output type="failure">Unhandled Exception</output>198<output type="failure">Exception:</output>199<output type="failure">Processing dump event</output>200</test>201<test id="Check joi_extends_level_2_I is still aligned with -Xlockword:noLockword">202<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=joi_extends_level_2_I main joi_extends_level_2_I</command>203<return value="0" />204<output type="failure">not aligned</output>205<output type="failure">Unhandled Exception</output>206<output type="failure">Exception:</output>207<output type="failure">Processing dump event</output>208</test>209<test id="Check oij_extends_level_2_I is aligned">210<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main oij_extends_level_2_I</command>211<return value="0" />212<output type="failure">not aligned</output>213<output type="failure">Unhandled Exception</output>214<output type="failure">Exception:</output>215<output type="failure">Processing dump event</output>216</test>217<test id="Check oij_extends_level_2_I is still aligned with -Xlockword:noLockword">218<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=oij_extends_level_2_I main oij_extends_level_2_I</command>219<return value="0" />220<output type="failure">not aligned</output>221<output type="failure">Unhandled Exception</output>222<output type="failure">Exception:</output>223<output type="failure">Processing dump event</output>224</test>225<test id="Check oji_extends_level_2_I is aligned">226<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main oji_extends_level_2_I</command>227<return value="0" />228<output type="failure">not aligned</output>229<output type="failure">Unhandled Exception</output>230<output type="failure">Exception:</output>231<output type="failure">Processing dump event</output>232</test>233<test id="Check oji_extends_level_2_I is still aligned with -Xlockword:noLockword">234<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=oji_extends_level_2_I main oji_extends_level_2_I</command>235<return value="0" />236<output type="failure">not aligned</output>237<output type="failure">Unhandled Exception</output>238<output type="failure">Exception:</output>239<output type="failure">Processing dump event</output>240</test>241<test id="Check ijo_extends_level_2_J is aligned">242<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main ijo_extends_level_2_J</command>243<return value="0" />244<output type="failure">not aligned</output>245<output type="failure">Unhandled Exception</output>246<output type="failure">Exception:</output>247<output type="failure">Processing dump event</output>248</test>249<test id="Check ijo_extends_level_2_J is still aligned with -Xlockword:noLockword">250<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=ijo_extends_level_2_J main ijo_extends_level_2_J</command>251<return value="0" />252<output type="failure">not aligned</output>253<output type="failure">Unhandled Exception</output>254<output type="failure">Exception:</output>255<output type="failure">Processing dump event</output>256</test>257<test id="Check ioj_extends_level_2_J is aligned">258<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main ioj_extends_level_2_J</command>259<return value="0" />260<output type="failure">not aligned</output>261<output type="failure">Unhandled Exception</output>262<output type="failure">Exception:</output>263<output type="failure">Processing dump event</output>264</test>265<test id="Check ioj_extends_level_2_J is still aligned with -Xlockword:noLockword">266<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=ioj_extends_level_2_J main ioj_extends_level_2_J</command>267<return value="0" />268<output type="failure">not aligned</output>269<output type="failure">Unhandled Exception</output>270<output type="failure">Exception:</output>271<output type="failure">Processing dump event</output>272</test>273<test id="Check jio_extends_level_2_J is aligned">274<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main jio_extends_level_2_J</command>275<return value="0" />276<output type="failure">not aligned</output>277<output type="failure">Unhandled Exception</output>278<output type="failure">Exception:</output>279<output type="failure">Processing dump event</output>280</test>281<test id="Check jio_extends_level_2_J is still aligned with -Xlockword:noLockword">282<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=jio_extends_level_2_J main jio_extends_level_2_J</command>283<return value="0" />284<output type="failure">not aligned</output>285<output type="failure">Unhandled Exception</output>286<output type="failure">Exception:</output>287<output type="failure">Processing dump event</output>288</test>289<test id="Check joi_extends_level_2_J is aligned">290<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main joi_extends_level_2_J</command>291<return value="0" />292<output type="failure">not aligned</output>293<output type="failure">Unhandled Exception</output>294<output type="failure">Exception:</output>295<output type="failure">Processing dump event</output>296</test>297<test id="Check joi_extends_level_2_J is still aligned with -Xlockword:noLockword">298<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=joi_extends_level_2_J main joi_extends_level_2_J</command>299<return value="0" />300<output type="failure">not aligned</output>301<output type="failure">Unhandled Exception</output>302<output type="failure">Exception:</output>303<output type="failure">Processing dump event</output>304</test>305<test id="Check oij_extends_level_2_J is aligned">306<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main oij_extends_level_2_J</command>307<return value="0" />308<output type="failure">not aligned</output>309<output type="failure">Unhandled Exception</output>310<output type="failure">Exception:</output>311<output type="failure">Processing dump event</output>312</test>313<test id="Check oij_extends_level_2_J is still aligned with -Xlockword:noLockword">314<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=oij_extends_level_2_J main oij_extends_level_2_J</command>315<return value="0" />316<output type="failure">not aligned</output>317<output type="failure">Unhandled Exception</output>318<output type="failure">Exception:</output>319<output type="failure">Processing dump event</output>320</test>321<test id="Check oji_extends_level_2_J is aligned">322<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main oji_extends_level_2_J</command>323<return value="0" />324<output type="failure">not aligned</output>325<output type="failure">Unhandled Exception</output>326<output type="failure">Exception:</output>327<output type="failure">Processing dump event</output>328</test>329<test id="Check oji_extends_level_2_J is still aligned with -Xlockword:noLockword">330<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=oji_extends_level_2_J main oji_extends_level_2_J</command>331<return value="0" />332<output type="failure">not aligned</output>333<output type="failure">Unhandled Exception</output>334<output type="failure">Exception:</output>335<output type="failure">Processing dump event</output>336</test>337<test id="Check ijo_extends_level_2_O is aligned">338<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main ijo_extends_level_2_O</command>339<return value="0" />340<output type="failure">not aligned</output>341<output type="failure">Unhandled Exception</output>342<output type="failure">Exception:</output>343<output type="failure">Processing dump event</output>344</test>345<test id="Check ijo_extends_level_2_O is still aligned with -Xlockword:noLockword">346<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=ijo_extends_level_2_O main ijo_extends_level_2_O</command>347<return value="0" />348<output type="failure">not aligned</output>349<output type="failure">Unhandled Exception</output>350<output type="failure">Exception:</output>351<output type="failure">Processing dump event</output>352</test>353<test id="Check ioj_extends_level_2_O is aligned">354<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main ioj_extends_level_2_O</command>355<return value="0" />356<output type="failure">not aligned</output>357<output type="failure">Unhandled Exception</output>358<output type="failure">Exception:</output>359<output type="failure">Processing dump event</output>360</test>361<test id="Check ioj_extends_level_2_O is still aligned with -Xlockword:noLockword">362<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=ioj_extends_level_2_O main ioj_extends_level_2_O</command>363<return value="0" />364<output type="failure">not aligned</output>365<output type="failure">Unhandled Exception</output>366<output type="failure">Exception:</output>367<output type="failure">Processing dump event</output>368</test>369<test id="Check jio_extends_level_2_O is aligned">370<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main jio_extends_level_2_O</command>371<return value="0" />372<output type="failure">not aligned</output>373<output type="failure">Unhandled Exception</output>374<output type="failure">Exception:</output>375<output type="failure">Processing dump event</output>376</test>377<test id="Check jio_extends_level_2_O is still aligned with -Xlockword:noLockword">378<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=jio_extends_level_2_O main jio_extends_level_2_O</command>379<return value="0" />380<output type="failure">not aligned</output>381<output type="failure">Unhandled Exception</output>382<output type="failure">Exception:</output>383<output type="failure">Processing dump event</output>384</test>385<test id="Check joi_extends_level_2_O is aligned">386<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main joi_extends_level_2_O</command>387<return value="0" />388<output type="failure">not aligned</output>389<output type="failure">Unhandled Exception</output>390<output type="failure">Exception:</output>391<output type="failure">Processing dump event</output>392</test>393<test id="Check joi_extends_level_2_O is still aligned with -Xlockword:noLockword">394<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=joi_extends_level_2_O main joi_extends_level_2_O</command>395<return value="0" />396<output type="failure">not aligned</output>397<output type="failure">Unhandled Exception</output>398<output type="failure">Exception:</output>399<output type="failure">Processing dump event</output>400</test>401<test id="Check oij_extends_level_2_O is aligned">402<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main oij_extends_level_2_O</command>403<return value="0" />404<output type="failure">not aligned</output>405<output type="failure">Unhandled Exception</output>406<output type="failure">Exception:</output>407<output type="failure">Processing dump event</output>408</test>409<test id="Check oij_extends_level_2_O is still aligned with -Xlockword:noLockword">410<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=oij_extends_level_2_O main oij_extends_level_2_O</command>411<return value="0" />412<output type="failure">not aligned</output>413<output type="failure">Unhandled Exception</output>414<output type="failure">Exception:</output>415<output type="failure">Processing dump event</output>416</test>417<test id="Check oji_extends_level_2_O is aligned">418<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ main oji_extends_level_2_O</command>419<return value="0" />420<output type="failure">not aligned</output>421<output type="failure">Unhandled Exception</output>422<output type="failure">Exception:</output>423<output type="failure">Processing dump event</output>424</test>425<test id="Check oji_extends_level_2_O is still aligned with -Xlockword:noLockword">426<command>$EXE$ $TESTSBOOTCLASSPATH$ $OBJECTTESTSBOOTCLASSPATH$ -Xlockword:noLockword=oji_extends_level_2_O main oji_extends_level_2_O</command>427<return value="0" />428<output type="failure">not aligned</output>429<output type="failure">Unhandled Exception</output>430<output type="failure">Exception:</output>431<output type="failure">Processing dump event</output>432</test>433434</suite>435436437