1 /* 2 * This file contains expectations for tests that were annotated with @KnownFailure at the time 3 */ 4 [ 5 { 6 description: "four known CharsetDecoder-/CharsetEncoder-related failures", 7 names: [ 8 "org.apache.harmony.nio_char.tests.java.nio.charset.ASCIICharsetEncoderTest#testCanEncodeSurrogate", 9 "org.apache.harmony.nio_char.tests.java.nio.charset.ASCIICharsetEncoderTest#testMultiStepEncode", 10 "org.apache.harmony.nio_char.tests.java.nio.charset.CharsetDecoderTest#testInvalidDecoding", 11 "org.apache.harmony.nio_char.tests.java.nio.charset.CharsetDecoderTest#test_decode" 12 ], 13 bug: 10729779 14 }, 15 { 16 description: "can't compile a pattern with negative look-behind and quantifiers with upper bounds", 17 name: "org.apache.harmony.regex.tests.java.util.regex.PatternTest#test_bug_40103", 18 bug: 40103 19 }, 20 { 21 description: "our regex implementation calls toString on CharSequences", 22 name: "org.apache.harmony.luni.tests.java.util.ScannerParseLargeFileBenchmarkTest#testParseLargeFile", 23 bug: 10133206 24 }, 25 { 26 description: "Package.getPackages(), ClassLoader.getPackages() both omit results", 27 name: "libcore.java.lang.PackageTest#testGetPackages", 28 bug: 5171136 29 }, 30 { 31 description: "Deserialization shouldn't set transient fields", 32 name: "libcore.java.io.SerializationTest#testSerializeFieldMadeTransient", 33 bug: 4471249 34 }, 35 { 36 description: "Investigate InterruptedIOException + InputStream.read(), OutputStream.write()", 37 names: [ 38 "libcore.java.io.InterruptedStreamTest#testInterruptSocketInputStream", 39 "libcore.java.io.InterruptedStreamTest#testInterruptSocketOutputStream" 40 ], 41 bug: 4181738 42 }, 43 { 44 description: "SimpleDateFormat assumes DST always uses 60 minute offset; this fails for zones like Lord Howe Daylight Time", 45 name: "libcore.java.text.SimpleDateFormatTest#testDstZoneWithNonDstTimestampForNonHourDstZone", 46 bug: 4723412 47 }, 48 { 49 description: "Expat uses an unbounded number of global references", 50 name: "libcore.xml.ExpatSaxParserTest#testGlobalReferenceTableOverflow", 51 bug: 2772628 52 }, 53 { 54 description: "Test fails, Intermediate certificate lacks BasicConstraints", 55 name: "com.android.org.bouncycastle.jce.provider.PKIXCertPathValidatorSpiTest#testTrustAndRemoteCertificatesWithDifferentEncodings", 56 bug: 3474648 57 }, 58 { 59 description: "DHParametersHelper.generateSafePrimes sometimes takes long time, other times takes a very long time", 60 name: "org.apache.harmony.crypto.tests.javax.crypto.interfaces.DHPrivateKeyTest#test_getParams", 61 bug: 3474446 62 }, 63 { 64 description: "KeyAgreementFunctionalTest times out even with an absurdly long timeout", 65 name: "org.apache.harmony.crypto.tests.javax.crypto.func.KeyAgreementFunctionalTest#test_KeyAgreement", 66 bug: 3473300 67 }, 68 { 69 name: "libcore.java.lang.StringTest#testCaseMapping_en_US", 70 bug: 3387655 71 }, 72 { 73 name: "libcore.java.io.FileTest#test_emptyFilename", 74 bug: 3387758 75 }, 76 { 77 description: "KxmlPullParser doesn't enforce top-level document element", 78 names: [ 79 "libcore.xml.KxmlPullParserDtdTest#testDoctypeInDocumentElement", 80 "libcore.xml.KxmlPullParserDtdTest#testDoctypeAfterDocumentElement" 81 ], 82 bug: 3452274 83 }, 84 { 85 description: "URLConnection fails on URLs containing {}", 86 name: "libcore.java.net.URLConnectionTest#testMalformedUrl", 87 bug: 1158780, 88 substring: "java.net.URISyntaxException" 89 }, 90 { 91 description: "KxmlParser doesn't expose DTD text", 92 name: "libcore.xml.KxmlPullParserDtdTest#testDoctypeWithNextToken", 93 bug: 3241492 94 }, 95 { 96 description: "Expat relaxed is different from Kxml relaxed", 97 names: [ 98 "libcore.xml.ExpatPullParserTest#testAttributeNoValueWithRelaxed", 99 "libcore.xml.ExpatPullParserTest#testAttributeUnquotedValueWithRelaxed", 100 "libcore.xml.ExpatPullParserTest#testMissingEntitiesWithRelaxed", 101 "libcore.xml.ExpatPullParserTest#testUnterminatedEntityWithRelaxed" 102 ], 103 bug: 3090550 104 }, 105 { 106 description: "ExpatPullParser doesn't support nextToken() or line numbers", 107 names: [ 108 "libcore.xml.ExpatPullParserDtdTest#testDoctypeWithNextToken", 109 "libcore.xml.ExpatPullParserTest#testCdataUsingNextToken", 110 "libcore.xml.ExpatPullParserTest#testCommentUsingNextToken", 111 "libcore.xml.ExpatPullParserTest#testCustomEntitiesAreNotEvaluated", 112 "libcore.xml.ExpatPullParserTest#testCustomEntitiesUsingNext", 113 "libcore.xml.ExpatPullParserTest#testCustomEntitiesUsingNextToken", 114 "libcore.xml.ExpatPullParserTest#testEmptyCdataUsingNextToken", 115 "libcore.xml.ExpatPullParserTest#testEmptyComment", 116 "libcore.xml.ExpatPullParserTest#testEmptyEntityReferenceUsingNext", 117 "libcore.xml.ExpatPullParserTest#testEmptyEntityReferenceUsingNextToken", 118 "libcore.xml.ExpatPullParserTest#testEntityInAttributeUsingNextToken", 119 "libcore.xml.ExpatPullParserTest#testLinesAndColumns", 120 "libcore.xml.ExpatPullParserTest#testMissingEntitiesInAttributesUsingNextToken", 121 "libcore.xml.ExpatPullParserTest#testMissingEntitiesInAttributesUsingNextTokenWithRelaxed", 122 "libcore.xml.ExpatPullParserTest#testMissingEntitiesInAttributesUsingNextWithRelaxed", 123 "libcore.xml.ExpatPullParserTest#testMissingEntitiesUsingNextToken", 124 "libcore.xml.ExpatPullParserTest#testMissingEntitiesUsingNextTokenWithRelaxed", 125 "libcore.xml.ExpatPullParserTest#testProcessingInstructionUsingNextToken", 126 "libcore.xml.ExpatPullParserTest#testRegularNumericEntities", 127 "libcore.xml.ExpatPullParserTest#testWhitespaceUsingNextToken", 128 "libcore.xml.ExpatPullParserTest#testXmlDeclaration", 129 "libcore.xml.ExpatPullParserTest#testXmlDeclarationExtraAttributes" 130 ], 131 bug: 3090550 132 }, 133 { 134 description: "ExpatPullParser doesn't handle surrogates properly", 135 name: "libcore.xml.ExpatPullParserTest#testCharacterReferenceOfLastUtf16Surrogate", 136 bug: 3090550 137 }, 138 { 139 description: "RandomAccessFile missing finalizer", 140 name: "libcore.java.io.RandomAccessFileTest#testRandomAccessFileHasCleanupFinalizer", 141 bug: 3015023 142 }, 143 { 144 description: "ICU seems to treat unknown and invalid locales differently", 145 name: "libcore.java.text.DateFormatSymbolsTest#test_getInstance_unknown_locale", 146 bug: 2541757 147 }, 148 { 149 description: "Root locale uses INF for infinity but unknown locales use \u221e", 150 name: "libcore.java.text.DecimalFormatSymbolsTest#test_getInstance_unknown_or_invalid_locale", 151 bug: 3056617 152 }, 153 { 154 description: "Minimal days in first week is broken", 155 names: [ 156 "libcore.java.text.OldSimpleDateFormatTest#testFormattingWeekOfYear", 157 "libcore.java.text.OldSimpleDateFormatTest#testDefaultMinimalDaysInFirstWeek" 158 ], 159 bug: 1613709 160 }, 161 { 162 description: "Custom SimpleTimeZones not honored by SimpleDateFormat", 163 name: "libcore.java.text.OldSimpleDateFormatTest#testFormattingTimezones", 164 bug: 3049014 165 }, 166 { 167 description: "NaN character not found when deserializing DecimalFormatSymbols", 168 name: "libcore.java.text.OldDecimalFormatSymbolsTest#test_RIHarmony_compatible", 169 bug: 3056792 170 }, 171 { 172 description: "DecimalFormat.formatToCharacterIterator() is failing tests", 173 names: [ 174 "libcore.java.text.OldDecimalFormatTest#test_formatToCharacterIterator", 175 "org.apache.harmony.text.tests.java.text.DecimalFormatTest#test_formatToCharacterIteratorLjava_lang_Object", 176 "org.apache.harmony.text.tests.java.text.DecimalFormatTest#test_formatToCharacterIteratorLjava_lang_Object__ArithmeticException" 177 ], 178 bug: 3056865 179 }, 180 { 181 description: "DecimalFormat.parse returns wrong type with multiplier: expected Long but was Double", 182 name: "libcore.java.text.OldDecimalFormatTest#test_parseLjava_lang_StringLjava_text_ParsePosition", 183 bug: 3057080 184 }, 185 { 186 description: "DecimalFormat FieldPosition not updated with correct begin and end indices", 187 name: "libcore.java.text.OldDecimalFormatTest#test_formatDLjava_lang_StringBufferLjava_text_FieldPosition", 188 bug: 3057090 189 }, 190 { 191 description: "DecimalFormat is limited to 127 digits", 192 name: "libcore.java.text.DecimalFormatTest#test_setMaximumIntegerDigits", 193 bug: 2400429 194 }, 195 { 196 description: "HTTPS connections should not be pooled.", 197 name: "libcore.java.net.URLConnectionTest#testConnectViaHttpsReusingConnectionsDifferentFactories", 198 bug: 3042192 199 }, 200 { 201 description: "Cookie tests failing on the host", 202 bug: 3041920, 203 names: [ 204 "libcore.java.net.CookiesTest#testNetscapeResponse", 205 "libcore.java.net.CookiesTest#testQuotedAttributeValues", 206 "libcore.java.net.CookiesTest#testRfc2109Response", 207 "libcore.java.net.CookiesTest#testRfc2965Response", 208 "libcore.java.net.CookiesTest#testSendingCookiesFromStore" 209 ], 210 modes: [ "host" ] 211 }, 212 { 213 description: "Math failures when running on the host", 214 names: [ 215 "libcore.java.lang.OldAndroidStrictMathTest#testLog1pD", 216 "libcore.java.lang.OldAndroidStrictMathTest#testRintD", 217 "org.apache.harmony.luni.tests.java.lang.MathTest#test_cbrt_D", 218 "org.apache.harmony.luni.tests.java.lang.MathTest#test_powDD", 219 "org.apache.harmony.luni.tests.java.lang.MathTest#test_sinh_D", 220 "org.apache.harmony.luni.tests.java.lang.StrictMathTest#test_log1p_D", 221 "org.apache.harmony.luni.tests.java.lang.StrictMathTest#test_rintD" 222 ], 223 bug: 2931959, 224 modes: [ "host" ] 225 }, 226 { 227 description: "Double.parseDouble().toString does wrong rounding", 228 names: [ 229 "libcore.java.lang.OldDoubleTest#test_parseDoubleLjava_lang_String", 230 "libcore.java.lang.DoubleTest#testParseLargestSubnormalDoublePrecision" 231 ], 232 bug: 1607938 233 }, 234 { 235 description: "We fake support for these by substituting similar (but not identical) charsets", 236 names: [ 237 "libcore.java.nio.charset.OldCharset_MultiByte_Big5#test_Decode", 238 "libcore.java.nio.charset.OldCharset_MultiByte_Big5#test_Encode", 239 "libcore.java.nio.charset.OldCharset_MultiByte_EUC_JP#test_CodecDynamic", 240 "libcore.java.nio.charset.OldCharset_MultiByte_EUC_JP#test_Decode", 241 "libcore.java.nio.charset.OldCharset_MultiByte_EUC_JP#test_Encode", 242 "libcore.java.nio.charset.OldCharset_MultiByte_GB2312#test_Decode", 243 "libcore.java.nio.charset.OldCharset_MultiByte_GB2312#test_Encode", 244 "libcore.java.nio.charset.OldCharset_MultiByte_GB2312#test_nameMatch", 245 "libcore.java.nio.charset.OldCharset_MultiByte_GBK#test_Decode", 246 "libcore.java.nio.charset.OldCharset_MultiByte_GBK#test_Encode", 247 "libcore.java.nio.charset.OldCharset_MultiByte_ISO_2022_JP#test_Decode", 248 "libcore.java.nio.charset.OldCharset_MultiByte_ISO_2022_JP#test_Encode", 249 "libcore.java.nio.charset.OldCharset_MultiByte_x_windows_950#test_Encode", 250 "libcore.java.nio.charset.OldCharset_MultiByte_x_windows_950#test_nameMatch" 251 ], 252 bug: 2985901 253 }, 254 { 255 description: "UTF-16 and UTF-32 encoders don't write big-endian output on little-endian devices", 256 names: [ 257 "libcore.java.nio.charset.CharsetEncoderTest#test_defaultReplacementBytesUtf_16", 258 "libcore.java.nio.charset.OldCharset_MultiByte_UTF_16#test_Encode", 259 "tests.api.java.nio.charset.CharsetTest#test_UTF_16", 260 "tests.api.java.nio.charset.CharsetTest#test_UTF_32", 261 "tests.api.java.nio.charset.CharsetTest#test_UTF_16BE", 262 "tests.api.java.nio.charset.CharsetTest#test_UTF_16LE", 263 "tests.api.java.nio.charset.CharsetTest#test_UTF_32BE", 264 "tests.api.java.nio.charset.CharsetTest#test_UTF_32LE", 265 "tests.api.java.nio.charset.CharsetTest#test_x_UTF_16LE_BOM", 266 "tests.api.java.nio.charset.CharsetTest#test_X_UTF_32BE_BOM", 267 "tests.api.java.nio.charset.CharsetTest#test_X_UTF_32LE_BOM" 268 ], 269 bug: 2702411 270 }, 271 { 272 description: "HTTPS proxy broken on host", 273 names: [ 274 "org.apache.harmony.luni.tests.internal.net.www.protocol.https.HttpsURLConnectionTest#testConsequentProxyConnection", 275 "org.apache.harmony.luni.tests.internal.net.www.protocol.https.HttpsURLConnectionTest#testProxyAuthConnection", 276 "org.apache.harmony.luni.tests.internal.net.www.protocol.https.HttpsURLConnectionTest#testProxyAuthConnection_doOutput", 277 "org.apache.harmony.luni.tests.internal.net.www.protocol.https.HttpsURLConnectionTest#testProxyConnection", 278 "org.apache.harmony.luni.tests.internal.net.www.protocol.https.HttpsURLConnectionTest#testProxyConnection_Not_Found_Response" 279 ], 280 bug: 3032875, 281 modes: [ "host" ] 282 }, 283 { 284 description: "Defining classes from byte[] not supported in Android", 285 result: EXEC_FAILED, 286 name: "libcore.java.lang.OldClassTest#test_getClasses_subtest0" 287 }, 288 { 289 description: "There is no protection domain set in Android.", 290 result: EXEC_FAILED, 291 name: "libcore.java.lang.OldClassTest#test_getProtectionDomain" 292 }, 293 { 294 description: "Runtime.getRuntime().traceMethodCalls(true) doesn't return on the host, fails in CTS", 295 bug: 3447964, 296 name: "libcore.java.lang.OldRuntimeTest#test_traceMethodCalls" 297 }, 298 { 299 description: "It's not allowed to pass null as parent class loader to a new ClassLoader anymore. Maybe we need 300 to change URLClassLoader to allow this? It's not specified.", 301 result: EXEC_FAILED, 302 name: "tests.api.java.util.ResourceBundleTest#test_getBundleLjava_lang_StringLjava_util_LocaleLjava_lang_ClassLoader" 303 }, 304 { 305 description: "Fails (probably) because no protection domain is set.", 306 result: EXEC_FAILED, 307 names: [ 308 "org.apache.harmony.security.tests.java.security.AccessController2Test#test_checkPermission_InvalidPermission", 309 "org.apache.harmony.security.tests.java.security.AccessController2Test#test_doPrivilegedLjava_security_PrivilegedAction", 310 "org.apache.harmony.security.tests.java.security.AccessController2Test#test_doPrivilegedLjava_security_PrivilegedActionLjava_security_AccessControlContext", 311 "org.apache.harmony.security.tests.java.security.AccessController2Test#test_doPrivilegedLjava_security_PrivilegedExceptionAction", 312 "org.apache.harmony.security.tests.java.security.AccessController2Test#test_doPrivilegedLjava_security_PrivilegedExceptionActionLjava_security_AccessControlContext" 313 ] 314 }, 315 { 316 description: "Android throws IllegalArgumentException, RI throws NullPointerException", 317 result: EXEC_FAILED, 318 name: "org.apache.harmony.security.tests.java.security.SignatureTest#testUpdatebyteArrayintint2" 319 }, 320 { 321 description: "Android doesn't support protection domains.", 322 result: EXEC_FAILED, 323 name: "tests.api.java.security.PermissionCollectionTest#test_impliesLjava_security_Permission" 324 }, 325 { 326 description: "Android doesn't allow null parent.", 327 result: EXEC_FAILED, 328 name: "tests.java.security.SecureClassLoaderTest#testSecureClassLoaderClassLoader" 329 }, 330 { 331 description: "Not all Drivers are loaded in testsetup. ClassLoader issue in DriverManager.", 332 result: EXEC_FAILED, 333 name: "org.apache.harmony.sql.tests.java.sql.DriverManagerTest#testDeregisterDriver" 334 }, 335 { 336 description: "not supported", 337 result: EXEC_FAILED, 338 names: [ 339 "tests.java.sql.SelectFunctionalityTest#test_SelectRightOuterJoin", 340 "tests.java.sql.UpdateFunctionalityTest2#testUpdate2", 341 "tests.java.sql.UpdateFunctionalityTest2#testUpdate4", 342 "tests.java.sql.UpdateFunctionalityTest2#testUpdate6", 343 "tests.java.sql.UpdateFunctionalityTest2#testUpdate7", 344 "tests.java.sql.DeleteFunctionalityTest#testDelete6" 345 ] 346 }, 347 { 348 description: "Not supported : pattern with %", 349 result: EXEC_FAILED, 350 name: "tests.java.sql.DatabaseMetaDataTest#test_getColumnsArbitrary" 351 }, 352 { 353 description: "Wildcard operator does not seem wo work correctly.", 354 result: EXEC_FAILED, 355 name: "tests.java.sql.DatabaseMetaDataTest#test_getColumnsSpecific" 356 }, 357 { 358 description: "Not supported ops applied: test fails on arguments: '', '', '%', '%'", 359 result: EXEC_FAILED, 360 name: "tests.java.sql.DatabaseMetaDataTest#test_getColumnsTableWithNoCatalogSchema" 361 }, 362 { 363 description: "(Ticket 91) Tables apply foreign key constraint. Catalogs not supported", 364 result: EXEC_FAILED, 365 name: "tests.java.sql.DatabaseMetaDataTest#test_getCrossReferenceLjava_lang_StringLjava_lang_StringLjava_lang_StringLjava_lang_StringLjava_lang_StringLjava_lang_String" 366 }, 367 { 368 description: "Ticket 98", 369 result: EXEC_FAILED, 370 names: [ 371 "tests.java.sql.DatabaseMetaDataTest#test_getDatabaseMajorVersion", 372 "tests.java.sql.DatabaseMetaDataTest#test_getDatabaseMinorVersion", 373 "tests.java.sql.DatabaseMetaDataTest#test_getDatabaseProductName", 374 "tests.java.sql.DatabaseMetaDataTest#test_getDatabaseProductVersion", 375 "tests.java.sql.DatabaseMetaDataTest#test_getDefaultTransactionIsolation", 376 "tests.java.sql.DatabaseMetaDataTest#test_getDriverName", 377 "tests.java.sql.DatabaseMetaDataTest#test_getDriverVersion" 378 ] 379 }, 380 { 381 description: "Keys are not supported: Ticket 91", 382 result: EXEC_FAILED, 383 name: "tests.java.sql.DatabaseMetaDataTest#test_getImportedKeysLjava_lang_StringLjava_lang_StringLjava_lang_String" 384 }, 385 { 386 description: "Ticket 98", 387 result: EXEC_FAILED, 388 names: [ 389 "tests.java.sql.DatabaseMetaDataTest#test_getJDBCMajorVersion", 390 "tests.java.sql.DatabaseMetaDataTest#test_getJDBCMinorVersion" 391 ] 392 }, 393 { 394 description: "Not supported feature, Ticket 98. Broken because NUMERIC_FUNCTIONS not complete. When fixed 395 change to @KnownFailure", 396 result: EXEC_FAILED, 397 name: "tests.java.sql.DatabaseMetaDataTest#test_getNumericFunctions" 398 }, 399 { 400 description: "Ticket 91 : relies on not supported features: getCatalog, keys", 401 result: EXEC_FAILED, 402 name: "tests.java.sql.DatabaseMetaDataTest#test_getPrimaryKeysLjava_lang_StringLjava_lang_StringLjava_lang_String" 403 }, 404 { 405 description: "Ticket 98", 406 result: EXEC_FAILED, 407 names: [ 408 "tests.java.sql.DatabaseMetaDataTest#test_getResultSetHoldability", 409 "tests.java.sql.DatabaseMetaDataTest#test_getSQLKeywords", 410 "tests.java.sql.DatabaseMetaDataTest#test_getSQLStateType", 411 "tests.java.sql.DatabaseMetaDataTest#test_getSchemas", 412 "tests.java.sql.DatabaseMetaDataTest#test_getSearchStringEscape" 413 ] 414 }, 415 { 416 description: "not supported", 417 result: EXEC_FAILED, 418 names: [ 419 "tests.java.sql.DatabaseMetaDataTest#test_getStringFunctions", 420 "tests.java.sql.DatabaseMetaDataTest#test_getSystemFunctions" 421 ] 422 }, 423 { 424 description: "Ticket 98", 425 result: EXEC_FAILED, 426 name: "tests.java.sql.DatabaseMetaDataTest#test_getTableTypes" 427 }, 428 { 429 description: "If no schema is associated: returns empty string where actually null be returned?. Ticket 98", 430 result: EXEC_FAILED, 431 name: "tests.java.sql.DatabaseMetaDataTest#test_getTablesLjava_lang_StringLjava_lang_StringLjava_lang_String$Ljava_lang_String" 432 }, 433 { 434 description: "not supported", 435 result: EXEC_FAILED, 436 names: [ 437 "tests.java.sql.DatabaseMetaDataTest#test_getTimeDateFunctions", 438 "tests.java.sql.DatabaseMetaDataTest#test_getTypeInfo" 439 ] 440 }, 441 { 442 description: "Ticket 98", 443 result: EXEC_FAILED, 444 names: [ 445 "tests.java.sql.DatabaseMetaDataTest#test_getURL", 446 "tests.java.sql.DatabaseMetaDataTest#test_insertsAreDetectedI", 447 "tests.java.sql.DatabaseMetaDataTest#test_isReadOnly", 448 "tests.java.sql.DatabaseMetaDataTest#test_othersDeletesAreVisibleI", 449 "tests.java.sql.DatabaseMetaDataTest#test_othersInsertsAreVisibleI", 450 "tests.java.sql.DatabaseMetaDataTest#test_othersUpdatesAreVisibleI" 451 ] 452 }, 453 { 454 description: "not supported. SQLException checking test fails", 455 result: EXEC_FAILED, 456 name: "tests.java.sql.DatabaseMetaDataTest#test_supportsColumnAliasing" 457 }, 458 { 459 description: "exception test fails", 460 result: EXEC_FAILED, 461 names: [ 462 "tests.java.sql.DatabaseMetaDataTest#test_supportsExpressionsInOrderBy", 463 "tests.java.sql.DatabaseMetaDataTest#test_supportsGroupBy", 464 "tests.java.sql.DatabaseMetaDataTest#test_supportsGroupByUnrelated" 465 ] 466 }, 467 { 468 description: "Ticket 98", 469 result: EXEC_FAILED, 470 name: "tests.java.sql.DatabaseMetaDataTest#test_supportsNonNullableColumns" 471 }, 472 { 473 description: "exception test fails", 474 result: EXEC_FAILED, 475 names: [ 476 "tests.java.sql.DatabaseMetaDataTest#test_supportsOrderByUnrelated", 477 "tests.java.sql.DatabaseMetaDataTest#test_supportsSelectForUpdate", 478 "tests.java.sql.DatabaseMetaDataTest#test_supportsSubqueriesInExists", 479 "tests.java.sql.DatabaseMetaDataTest#test_supportsTableCorrelationNames" 480 ] 481 }, 482 { 483 description: "Not supported ops applied", 484 result: EXEC_FAILED, 485 name: "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_allTablesAreSelectable" 486 }, 487 { 488 description: "not supported", 489 result: EXEC_FAILED, 490 name: "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_doesMaxRowSizeIncludeBlobs" 491 }, 492 { 493 description: "not supported. Privileges are not supported.", 494 result: EXEC_FAILED, 495 name: "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_getColumnPrivilegesLjava_lang_StringLjava_lang_StringLjava_lang_StringLjava_lang_String" 496 }, 497 { 498 description: "not supported", 499 result: EXEC_FAILED, 500 names: [ 501 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_getExportedKeysLjava_lang_StringLjava_lang_StringLjava_lang_String", 502 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_getIndexInfoLjava_lang_StringLjava_lang_StringLjava_lang_StringZZ" 503 ] 504 }, 505 { 506 description: "Exception test fails", 507 result: EXEC_FAILED, 508 names: [ 509 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_getMaxTableNameLength", 510 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_getMaxTablesInSelect", 511 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_getMaxUserNameLength", 512 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_getProcedureTerm", 513 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_getSchemaTerm" 514 ] 515 }, 516 { 517 description: "not supported. Privileges are not supported.", 518 result: EXEC_FAILED, 519 name: "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_getTablePrivilegesLjava_lang_StringLjava_lang_StringLjava_lang_String" 520 }, 521 { 522 description: "Not supported ops applied", 523 result: EXEC_FAILED, 524 name: "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_getVersionColumnsLjava_lang_StringLjava_lang_StringLjava_lang_String" 525 }, 526 { 527 description: "Exception test fails", 528 result: EXEC_FAILED, 529 name: "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_isCatalogAtStart" 530 }, 531 { 532 description: "not supported", 533 bug: 3403706, 534 names: [ 535 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_locatorsUpdateCopy", 536 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_supportsANSI92EntryLevelSQL", 537 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_supportsDataDefinitionAndDataManipulationTransactions", 538 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_supportsMinimumSQLGrammar", 539 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_supportsResultSetTypeI", 540 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_supportsSubqueriesInComparisons", 541 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_supportsSubqueriesInIns", 542 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_supportsTransactions", 543 "tests.java.sql.DatabaseMetaDataNotSupportedTest#test_usesLocalFiles", 544 "libcore.java.sql.OldConnectionTest#testClearWarnings", 545 "libcore.java.sql.OldConnectionTest#testCreateStatementIntIntIntNotSupported" 546 ] 547 }, 548 { 549 description: "Scrolling on a forward only RS not allowed. conn.close() does not wrap up", 550 bug: 3403706, 551 name: "libcore.java.sql.OldConnectionTest#testCreateStatement_int_int" 552 }, 553 { 554 description: "not supported", 555 bug: 3403706, 556 names: [ 557 "libcore.java.sql.OldConnectionTest#testGetCatalog", 558 "libcore.java.sql.OldConnectionTest#testGetHoldability" 559 ] 560 }, 561 { 562 description: "conn.close() does not wrap up", 563 bug: 3403706, 564 name: "libcore.java.sql.OldConnectionTest#testGetMetaData" 565 }, 566 { 567 description: "not supported", 568 bug: 3403706, 569 names: [ 570 "libcore.java.sql.OldConnectionTest#testGetTransactionIsolation", 571 "libcore.java.sql.OldConnectionTest#testGetWarnings" 572 ] 573 }, 574 { 575 description: "conn.close() does not wrap up", 576 bug: 3403706, 577 name: "libcore.java.sql.OldConnectionTest#testIsReadOnly" 578 }, 579 { 580 description: "not supported", 581 bug: 3403706, 582 names: [ 583 "libcore.java.sql.OldConnectionTest#testPrepareStatementNotSupported", 584 "libcore.java.sql.OldConnectionTest#testPrepareStatement_String_int" 585 ] 586 }, 587 { 588 description: "conn.close() does not wrap up", 589 bug: 3403706, 590 name: "libcore.java.sql.OldConnectionTest#testSetAutoCommit" 591 }, 592 { 593 description: "not supported", 594 bug: 3403706, 595 names: [ 596 "libcore.java.sql.OldConnectionTest#testSetHoldability", 597 "libcore.java.sql.OldConnectionTest#testSetReadOnly" 598 ] 599 }, 600 { 601 description: "First Exception test fails: parameters not cleared.", 602 bug: 3403706, 603 name: "libcore.java.sql.OldPreparedStatementTest#testClearParameters" 604 }, 605 { 606 description: "preparedStatement.execute() does not return false on update.", 607 bug: 3403706, 608 name: "libcore.java.sql.OldPreparedStatementTest#testExecute" 609 }, 610 { 611 description: "it is not possible to invoke the method getMetaData on a PreparedStatement object before it is 612 executed: got NullPointerException.Test passes on RI.", 613 bug: 3403706, 614 name: "libcore.java.sql.OldPreparedStatementTest#testGetMetaData" 615 }, 616 { 617 description: "preparedStatement.execute() does not return false on update.", 618 bug: 3403706, 619 name: "libcore.java.sql.OldPreparedStatementTest#testSetBigDecimal" 620 }, 621 { 622 description: "exception test fails", 623 bug: 3403706, 624 names: [ 625 "libcore.java.sql.OldPreparedStatementTest#testSetBoolean", 626 "libcore.java.sql.OldPreparedStatementTest#testSetByte" 627 ] 628 }, 629 { 630 description: "preparedStatement.execute() does not return false on update.", 631 bug: 3403706, 632 name: "libcore.java.sql.OldPreparedStatementTest#testSetBytes" 633 }, 634 { 635 description: "preparedStatement.execute() does not return false on update. Setting a data for a declared 636 INTEGER should throw Exception", 637 bug: 3403706, 638 name: "libcore.java.sql.OldPreparedStatementTest#testSetDate_int_Date" 639 }, 640 { 641 description: "preparedStatement.execute() does not return false on update.", 642 bug: 3403706, 643 name: "libcore.java.sql.OldPreparedStatementTest#testSetDate_int_Date_Calendar" 644 }, 645 { 646 description: "exception test fails", 647 bug: 3403706, 648 names: [ 649 "libcore.java.sql.OldPreparedStatementTest#testSetDouble", 650 "libcore.java.sql.OldPreparedStatementTest#testSetFloat", 651 "libcore.java.sql.OldPreparedStatementTest#testSetInt", 652 "libcore.java.sql.OldPreparedStatementTest#testSetLong", 653 "libcore.java.sql.OldPreparedStatementTest#testSetObject_int_Object" 654 ] 655 }, 656 { 657 description: "Fails for Types.DATE", 658 bug: 3403706, 659 names: [ 660 "libcore.java.sql.OldPreparedStatementTest#testSetObject_int_Object_int", 661 "libcore.java.sql.OldPreparedStatementTest#testSetObject_int_Object_int_int" 662 ] 663 }, 664 { 665 description: "exception test fails", 666 bug: 3403706, 667 names: [ 668 "libcore.java.sql.OldPreparedStatementTest#testSetShort", 669 "libcore.java.sql.OldPreparedStatementTest#testSetString_charField", 670 "libcore.java.sql.OldPreparedStatementTest#testSetString_longTextField" 671 ] 672 }, 673 { 674 description: "statement.close() does not wrap up", 675 bug: 3403706, 676 name: "libcore.java.sql.OldPreparedStatementTest#testSetString_tinyTextField" 677 }, 678 { 679 description: "preparedStatement.execute() does not return False on update.", 680 bug: 3403706, 681 name: "libcore.java.sql.OldPreparedStatementTest#testSetTime_int_Time_Calendar" 682 }, 683 { 684 description: "statement.close() does not wrap up", 685 bug: 3403706, 686 name: "libcore.java.sql.OldPreparedStatementTest#testSetTimeint_Time" 687 }, 688 { 689 description: "preparedStatement.execute() does not return false on update.", 690 bug: 3403706, 691 names: [ 692 "libcore.java.sql.OldPreparedStatementTest#testSetTimestampIntTimestampCalendar", 693 "libcore.java.sql.OldPreparedStatementTest#testSetTimestamp_int_Timestamp" 694 ] 695 }, 696 { 697 description: "last assertion fails: invalid conversion. Test passes on RI", 698 bug: 3403706, 699 names: [ 700 "libcore.java.sql.OldResultSetGetterTests#testGetBytesStringBinary", 701 "libcore.java.sql.OldResultSetGetterTests#testGetBytesStringVarbinary" 702 ] 703 }, 704 { 705 description: "Wrong value returned for Long: java.lang.String (VARCHAR)", 706 bug: 3403706, 707 name: "libcore.java.sql.OldResultSetGetterTests#testGetMetaData" 708 }, 709 { 710 description: "Wrong value returned for Long: java.lang.String", 711 bug: 3403706, 712 names: [ 713 "libcore.java.sql.OldResultSetGetterTests#testGetObjectInt", 714 "libcore.java.sql.OldResultSetGetterTests#testGetObjectString" 715 ] 716 }, 717 { 718 description: "If there is no current row 0 must be returned. res.close() does not wrap up", 719 bug: 3403706, 720 name: "libcore.java.sql.OldResultSetGetterTests#testGetRow" 721 }, 722 { 723 description: "According to spec info.getStatement should return null but an exception is thrown: stale result 724 set.", 725 bug: 3403706, 726 name: "libcore.java.sql.OldResultSetGetterTests#testGetStatement" 727 }, 728 { 729 description: "getTime should return Time value for a TIMESTAMP type but returns null", 730 bug: 3403706, 731 name: "libcore.java.sql.OldResultSetGetterTests#testGetTimeInt" 732 }, 733 { 734 description: "getTime on TIMESTAMP value fails: returns null", 735 bug: 3403706, 736 name: "libcore.java.sql.OldResultSetGetterTests#testGetTimeIntCalendar" 737 }, 738 { 739 description: "getTime should return a Time value for a TIMESTAMP type but returns null", 740 bug: 3403706, 741 name: "libcore.java.sql.OldResultSetGetterTests#testGetTimeString" 742 }, 743 { 744 description: "getTime on TIMESTAMP value fails: returns null", 745 bug: 3403706, 746 name: "libcore.java.sql.OldResultSetGetterTests#testGetTimeStringCalendar" 747 }, 748 { 749 description: "res.close() does not wrap up", 750 bug: 3403706, 751 name: "libcore.java.sql.OldResultSetGetterTests#testGetType" 752 }, 753 { 754 description: "not supported", 755 bug: 3403706, 756 name: "libcore.java.sql.OldResultSetMetaDataTest#testGetCatalogName" 757 }, 758 { 759 description: "SQLException checking test fails", 760 bug: 3403706, 761 name: "libcore.java.sql.OldResultSetMetaDataTest#testGetColumnCount" 762 }, 763 { 764 description: "not supported", 765 bug: 3403706, 766 name: "libcore.java.sql.OldResultSetMetaDataTest#testGetColumnDisplaySize" 767 }, 768 { 769 description: "Column label has format TABLE.COLUMN expected: COLUMN", 770 bug: 3403706, 771 names: [ 772 "libcore.java.sql.OldResultSetMetaDataTest#testGetColumnLabel", 773 "libcore.java.sql.OldResultSetMetaDataTest#testGetColumnName" 774 ] 775 }, 776 { 777 description: "not supported", 778 bug: 3403706, 779 name: "libcore.java.sql.OldResultSetMetaDataTest#testGetPrecision" 780 }, 781 { 782 description: "Not supported", 783 bug: 3403706, 784 name: "libcore.java.sql.OldResultSetMetaDataTest#testGetScale" 785 }, 786 { 787 description: "not supported", 788 bug: 3403706, 789 name: "libcore.java.sql.OldResultSetMetaDataTest#testGetSchema" 790 }, 791 { 792 description: "For int = 0, exception expected", 793 bug: 3403706, 794 name: "libcore.java.sql.OldResultSetMetaDataTest#testGetTableName" 795 }, 796 { 797 description: "not supported", 798 bug: 3403706, 799 names: [ 800 "libcore.java.sql.OldResultSetMetaDataTest#testIsCaseSensitive", 801 "libcore.java.sql.OldResultSetMetaDataTest#testIsCurrency", 802 "libcore.java.sql.OldResultSetMetaDataTest#testIsDefinitlyWritable", 803 "libcore.java.sql.OldResultSetMetaDataTest#testIsNullable", 804 "libcore.java.sql.OldResultSetMetaDataTest#testIsReadOnly", 805 "libcore.java.sql.OldResultSetMetaDataTest#testIsSearchable", 806 "libcore.java.sql.OldResultSetMetaDataTest#testIsSigned", 807 "libcore.java.sql.OldResultSetMetaDataTest#testIsWritable", 808 "libcore.java.sql.OldResultSetMetaDataTest#testisAutoIncrement" 809 ] 810 }, 811 { 812 description: "res.close() does not wrap up", 813 bug: 3403706, 814 name: "libcore.java.sql.OldResultSetTest#testAfterLast" 815 }, 816 { 817 description: "statement.close() does not wrap up", 818 bug: 3403706, 819 name: "libcore.java.sql.OldResultSetTest#testBeforeFirst" 820 }, 821 { 822 description: "Not supported", 823 bug: 3403706, 824 name: "libcore.java.sql.OldResultSetTest#testClearWarnings" 825 }, 826 { 827 description: "Resultset.close() does not wrap up", 828 bug: 3403706, 829 names: [ 830 "libcore.java.sql.OldResultSetTest#testClose1", 831 "libcore.java.sql.OldResultSetTest#testNext" 832 ] 833 }, 834 { 835 description: "no exception is thrown when moving cursor backwards on forward only statement", 836 bug: 3403706, 837 name: "libcore.java.sql.OldResultSetTest#testRelative" 838 }, 839 { 840 description: "Scrollable resultSet. Not supported", 841 bug: 3403706, 842 name: "libcore.java.sql.OldResultSetTest#testRelativeScrollableResultSet" 843 }, 844 { 845 description: "not supported", 846 bug: 3403706, 847 name: "libcore.java.sql.OldResultSetTest#testUpdateObjectStringObject" 848 }, 849 { 850 description: "Feature not supported", 851 bug: 3403706, 852 name: "libcore.java.sql.OldResultSetTest#testUpdateStringStringString" 853 }, 854 { 855 description: "the default tests, and exception tests fail.", 856 bug: 3403706, 857 name: "libcore.java.sql.OldResultSetTest#testWasNull" 858 }, 859 { 860 description: "statement.close() does not wrap up", 861 bug: 3403706, 862 names: [ 863 "libcore.java.sql.OldResultSetTest#testtestFirst", 864 "libcore.java.sql.OldResultSetTest#testtestIsAfterLast" 865 ] 866 }, 867 { 868 description: "In Second code block assertion fails. statement. close() does not wrap up", 869 bug: 3403706, 870 name: "libcore.java.sql.OldResultSetTest#testtestIsBeforeFirst" 871 }, 872 { 873 description: "statement.close() does not wrap up", 874 bug: 3403706, 875 name: "libcore.java.sql.OldResultSetTest#testtestIsFirst" 876 }, 877 { 878 description: "Second block first assertion fails. Is Last should evaluate true if the row on which the cursor 879 is actually provides a result.statement.close() does not wrap up", 880 bug: 3403706, 881 name: "libcore.java.sql.OldResultSetTest#testtestIsLast" 882 }, 883 { 884 description: "statement.close() does not wrap up", 885 bug: 3403706, 886 name: "libcore.java.sql.OldResultSetTest#testtestLast" 887 }, 888 { 889 description: "Bug in implementation of cancel: Does not fulfill spec.", 890 bug: 3403706, 891 name: "libcore.java.sql.OldStatementTest#testCancel" 892 }, 893 { 894 description: "statement.close() does not wrap up", 895 bug: 3403706, 896 name: "libcore.java.sql.OldStatementTest#testClose" 897 }, 898 { 899 description: "Return value wrong for queries below.", 900 bug: 3403706, 901 name: "libcore.java.sql.OldStatementTest#testExecute" 902 }, 903 { 904 description: "always returns 1 for no. of updates", 905 bug: 3403706, 906 name: "libcore.java.sql.OldStatementTest#testExecuteBatch" 907 }, 908 { 909 description: "Does throw an exception on non select statement.", 910 bug: 3403706, 911 name: "libcore.java.sql.OldStatementTest#testExecuteQuery_String" 912 }, 913 { 914 description: "Spec is not precise enough: should be: number of rows affected. eg. to be consistent for deletes: 915 'delete from s1;' should be different from 'delete from s1 where c1 = 1;'", 916 bug: 3403706, 917 name: "libcore.java.sql.OldStatementTest#testExecuteUpdate_String" 918 }, 919 { 920 description: "statement.close() does not wrap up", 921 bug: 3403706, 922 names: [ 923 "libcore.java.sql.OldStatementTest#testGetConnection", 924 "libcore.java.sql.OldStatementTest#testGetFetchDirection", 925 "libcore.java.sql.OldStatementTest#testGetFetchSize" 926 ] 927 }, 928 { 929 description: "not supported", 930 bug: 3403706, 931 name: "libcore.java.sql.OldStatementTest#testGetMoreResults" 932 }, 933 { 934 description: "An other value is returned than was set (X * 1000)", 935 bug: 3403706, 936 name: "libcore.java.sql.OldStatementTest#testGetQueryTimeout" 937 }, 938 { 939 description: "Does not return null on update count > 0 (not a select statement)", 940 bug: 3403706, 941 name: "libcore.java.sql.OldStatementTest#testGetResultSet" 942 }, 943 { 944 description: "Not supported", 945 bug: 3403706, 946 name: "libcore.java.sql.OldStatementTest#testGetResultSetConcurrency" 947 }, 948 { 949 description: "Test for default value fails", 950 bug: 3403706, 951 name: "libcore.java.sql.OldStatementTest#testGetResultSetHoldability" 952 }, 953 { 954 description: "not fully supported", 955 bug: 3403706, 956 name: "libcore.java.sql.OldStatementTest#testGetResultSetType" 957 }, 958 { 959 description: "statement.close() does not wrap up", 960 bug: 3403706, 961 name: "libcore.java.sql.OldStatementTest#testGetUpdateCount" 962 }, 963 { 964 description: "Handshake Status is never finished. NPE in ClientSessionContext$HostAndPort.hashCode() when host 965 is null", 966 bug: 3403706, 967 name: "tests.api.javax.net.ssl.SSLEngineTest#testHandshake" 968 }, 969 { 970 description: "com.android.org.conscrypt.SSLEngineImpl#getDelegatedTask() throws NPE instead of 971 returning null", 972 bug: 3403706, 973 name: "tests.api.javax.net.ssl.SSLEngineTest#test_getDelegatedTask" 974 }, 975 { 976 description: "Fixed in DonutBurger, boundary checks missing", 977 bug: 3403706, 978 name: "tests.api.javax.net.ssl.SSLEngineTest#test_unwrap_02" 979 }, 980 { 981 description: "Fixed on DonutBurger, Wrong Exception thrown", 982 bug: 3403706, 983 names: [ 984 "tests.api.javax.net.ssl.SSLEngineTest#test_unwrap_03", 985 "tests.api.javax.net.ssl.SSLEngineTest#test_unwrap_04", 986 "tests.api.javax.net.ssl.SSLEngineTest#test_unwrap_ByteBuffer$ByteBuffer_02", 987 "tests.api.javax.net.ssl.SSLEngineTest#test_unwrap_ByteBuffer$ByteBuffer_03", 988 "tests.api.javax.net.ssl.SSLEngineTest#test_unwrap_ByteBuffer_ByteBuffer_02", 989 "tests.api.javax.net.ssl.SSLEngineTest#test_unwrap_ByteBuffer_ByteBuffer_03" 990 ] 991 }, 992 { 993 description: "Fixed in DonutBurger, boundary checks missing", 994 bug: 3403706, 995 name: "tests.api.javax.net.ssl.SSLEngineTest#test_wrap_02" 996 }, 997 { 998 description: "Fixed on DonutBurger, Wrong Exception thrown", 999 bug: 3403706, 1000 names: [ 1001 "tests.api.javax.net.ssl.SSLEngineTest#test_wrap_04", 1002 "tests.api.javax.net.ssl.SSLEngineTest#test_wrap_ByteBuffer$ByteBuffer_03", 1003 "tests.api.javax.net.ssl.SSLEngineTest#test_wrap_ByteBuffer_ByteBuffer_03" 1004 ] 1005 }, 1006 { 1007 description: "ManagerFactoryParameters object is not supported and InvalidAlgorithmParameterException was 1008 thrown.", 1009 bug: 3403706, 1010 name: "tests.api.javax.net.ssl.TrustManagerFactory1Test#test_initLjavax_net_ssl_ManagerFactoryParameters" 1011 }, 1012 { 1013 description: "HostnameVerifier doesn't verify IP addresses", 1014 bug: 3299188, 1015 name: "tests.api.javax.net.ssl.HostnameVerifierTest#testVerifyIpAddress" 1016 }, 1017 { 1018 description: "NO SERVER CERTIFICATE FOUND - selectSuite should not pick a suite that needs a certificate if it is missing", 1019 bug: 3045163, 1020 name: "libcore.javax.net.ssl.SSLEngineTest#test_SSLEngine_beginHandshake_noKeyStore" 1021 }, 1022 { 1023 description: "AlertException instead of SSLException", 1024 bug: 3045163, 1025 name: "libcore.javax.net.ssl.SSLEngineTest#test_SSLEngine_setEnableSessionCreation_client" 1026 }, 1027 { 1028 description: "SSLException instead of failure to handshake", 1029 bug: 3045163, 1030 name: "libcore.javax.net.ssl.SSLEngineTest#test_SSLEngine_setEnableSessionCreation_server" 1031 }, 1032 { 1033 description: "SSLHandshakeException instead of failure to handshake", 1034 bug: 3045163, 1035 name: "libcore.javax.net.ssl.SSLEngineTest#test_SSLEngine_setUseClientMode" 1036 }, 1037 { 1038 description: "method test fails once in a while. Cannot be sure that exception is thrown in every test execution.", 1039 bug: 3403706, 1040 name: "libcore.sqlite.OldDatabaseTest#testBusy_handler" 1041 }, 1042 { 1043 description: "Database does not lock values", 1044 bug: 3403706, 1045 name: "libcore.sqlite.OldDatabaseTest#testBusy_timeout" 1046 }, 1047 { 1048 description: "Returns wrong number for updates: returns value > 1 for select.", 1049 bug: 3403706, 1050 name: "libcore.sqlite.OldDatabaseTest#testChanges" 1051 }, 1052 { 1053 description: "Aggregation function not called", 1054 bug: 3403706, 1055 name: "libcore.sqlite.OldDatabaseTest#testCreate_aggregate" 1056 }, 1057 { 1058 description: "Reason for failure unknown: Database should be locked. Specification of interrupt is scarce.", 1059 result: EXEC_FAILED, 1060 name: "libcore.sqlite.OldDatabaseTest#testInterrupt" 1061 }, 1062 { 1063 description: "not supported", 1064 bug: 3403706, 1065 name: "libcore.sqlite.OldDatabaseTest#testOpen_blob" 1066 }, 1067 { 1068 description: "Callback never made for authorization. Results of private table are returned without further checks.", 1069 bug: 3403706, 1070 name: "libcore.sqlite.OldDatabaseTest#testSet_authorizer" 1071 }, 1072 { 1073 description: "ASCII encoding does not work: a UTF encoded val is returned. Spec is not sufficient. Might be that test impl is wrong or String constructor for the ASCII encoding.", 1074 bug: 3403706, 1075 name: "libcore.sqlite.OldDatabaseTest#testSet_encoding" 1076 }, 1077 { 1078 description: "db.open_blob is not supported.", 1079 bug: 3403706, 1080 name: "libcore.sqlite.OldBlobTest#testBlob" 1081 }, 1082 { 1083 description: "Wrong value is returned in case of a prepared statement to which a '*' bound", 1084 bug: 3403706, 1085 name: "libcore.sqlite.OldStmtTest#testColumn_count" 1086 }, 1087 { 1088 description: "ZeroBlob not supported", 1089 bug: 3403706, 1090 name: "libcore.sqlite.OldFunctionContextTest#testSet_result_zeroblob" 1091 }, 1092 { 1093 description: "SQLite test fail", 1094 bug: 3403706, 1095 names: [ 1096 "libcore.sqlite.OldDatabaseTest#testGet_tableString", 1097 "libcore.sqlite.OldDatabaseTest#testGet_tableStringStringArrayTableResult", 1098 "libcore.sqlite.OldStmtTest#testColumn_type" 1099 ] 1100 }, 1101 { 1102 modes: [ "jvm" ], 1103 description: "The RI's formatter doesn't localize arabic properly", 1104 names: [ 1105 "libcore.java.util.FormatterTest#test_numberLocalization", 1106 "libcore.java.util.FormatterTest#test_uppercaseConversions" 1107 ], 1108 result: EXEC_FAILED 1109 }, 1110 { 1111 description: "Android's XSLT implementation fails 524 of 3173 OASIS tests", 1112 bug: 4193599, 1113 names: [ 1114 "libcore.xml.XsltXPathConformanceTestSuite$MisspecifiedTest#test", 1115 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt005", 1116 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt017", 1117 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt018", 1118 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt019", 1119 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt020", 1120 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt022", 1121 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt024", 1122 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt029", 1123 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt033", 1124 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt034", 1125 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt038", 1126 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt039", 1127 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt044", 1128 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt045", 1129 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt047", 1130 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt052", 1131 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt054", 1132 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt055", 1133 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt056", 1134 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt058", 1135 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt061", 1136 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt062", 1137 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt063", 1138 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt064", 1139 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt067", 1140 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt069", 1141 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt070", 1142 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt074", 1143 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt075", 1144 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt077", 1145 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt079", 1146 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt083", 1147 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt085", 1148 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt086", 1149 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt089", 1150 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt090", 1151 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt091", 1152 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt094", 1153 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt095", 1154 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.BVTs_bvt098", 1155 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Completeness__84361", 1156 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err003", 1157 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err004", 1158 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err005", 1159 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err006", 1160 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err010", 1161 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err011", 1162 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err012", 1163 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err013", 1164 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err026", 1165 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err029", 1166 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err031", 1167 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err038", 1168 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err044", 1169 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err048", 1170 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err049", 1171 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err050", 1172 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err051", 1173 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err059", 1174 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err062", 1175 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err065", 1176 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err073", 1177 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err075", 1178 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err076", 1179 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err078", 1180 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err093", 1181 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err103", 1182 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err106", 1183 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_err108", 1184 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Errors_xsl_template_complicated_match_pattern_with_variable_ref", 1185 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Miscellaneous__84423", 1186 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Miscellaneous__84424", 1187 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Miscellaneous__84426", 1188 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Miscellaneous__84427", 1189 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Miscellaneous__84435", 1190 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.Miscellaneous__91183", 1191 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions_BooleanFunction", 1192 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions_Bug76054", 1193 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions_DocumentFunctionWithAbsoluteArgument", 1194 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions_DocumentFunctionWithEntityRef", 1195 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions_ElementAvailFunctionFalseTest", 1196 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions_GenereateIdAppliedToNamespaceNodesOnDifferentElements", 1197 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions_TestIdFuncInComplexStruct", 1198 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions_TestOfIdFunction", 1199 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10002", 1200 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10003", 1201 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10004", 1202 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10005", 1203 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10006", 1204 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10007", 1205 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10008", 1206 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10009", 1207 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10010", 1208 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10011", 1209 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10012", 1210 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10013", 1211 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10014", 1212 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10015", 1213 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10016", 1214 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10017", 1215 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10018", 1216 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10019", 1217 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10020", 1218 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10021", 1219 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10022", 1220 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10023", 1221 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10024", 1222 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10025", 1223 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10026", 1224 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__10049", 1225 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__84048", 1226 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__84049", 1227 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__84050", 1228 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__84170", 1229 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__84172", 1230 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__EuropeanPattern", 1231 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__Non_DigitPattern", 1232 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__Pattern-separator", 1233 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__currency", 1234 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__defaultPattern", 1235 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__minimalValue", 1236 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__minimumValue", 1237 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__percentPattern", 1238 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__specialCharInPattern", 1239 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#Mixed.XSLTFunctions__testOn-0.00", 1240 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables_UseDocumentFnToReturnRootNode", 1241 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables_VariableWithinVariable", 1242 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__78117", 1243 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__78120", 1244 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__78125", 1245 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__78161", 1246 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__78356", 1247 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__78360", 1248 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__84633", 1249 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__84634", 1250 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__84636", 1251 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__84637", 1252 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__84697", 1253 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__84709", 1254 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__84710", 1255 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XPath-Data-Model.Variables__84712", 1256 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Keys_PerfRepro2", 1257 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Keys_PerfRepro3", 1258 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Keys__91832", 1259 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Keys__91833", 1260 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Keys__91836", 1261 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Keys__91859", 1262 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting_SortExprWithCurrentInsideForEach1", 1263 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting_Sort_SortTextWithNonTextCharacters", 1264 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting_Sort_TextNodesSpanMultipleLines", 1265 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting_TurkishISortingTest", 1266 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__77516", 1267 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__77525", 1268 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__77977", 1269 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__78191", 1270 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__78286", 1271 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__78291", 1272 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__84006", 1273 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91689", 1274 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91691", 1275 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91693", 1276 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91694", 1277 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91695", 1278 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91696", 1279 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91697", 1280 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91698", 1281 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91699", 1282 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91700", 1283 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91701", 1284 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91704", 1285 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91705", 1286 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91752", 1287 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Manipulation.Sorting__91753", 1288 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Model.Whitespaces__91422", 1289 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Model.Whitespaces__91423", 1290 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Model.Whitespaces__91425", 1291 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Model.Whitespaces__91428", 1292 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Model.Whitespaces__91443", 1293 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Data-Model.Whitespaces__91444", 1294 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Extendability.Fallback__91825", 1295 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Extendability.ForwardComp__91841", 1296 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Extendability.ForwardComp__91844", 1297 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Extendability.ForwardComp__91848", 1298 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Extendability.ForwardComp__91849", 1299 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Extendability.ForwardComp__91853", 1300 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Extendability.ForwardComp__91856", 1301 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_AmpersandWithinHtmlAttribute", 1302 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_DoctypePublicAndSystemAttribute", 1303 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_DoctypePublicAttribute", 1304 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_DoctypeSystemAttribute", 1305 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_EmptyElement1", 1306 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_EntityRefInAttribHtml", 1307 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_HtmlOutputWithAmpersandCurlyBracket", 1308 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_HtmlOutputWithLessThanInAttribute", 1309 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_Html_Op_Href_Attr_non_ascii_value", 1310 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_MediaTypeTest", 1311 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_MethodEqualsHtmlWithoutIndentSet", 1312 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_Modified84433", 1313 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_Output_UseStandAloneAttributeWithMultipleRoots", 1314 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_SignInHrefAttribute", 1315 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output_UseLiteralResultElementHead", 1316 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__77929", 1317 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__77930", 1318 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__77936", 1319 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__77939", 1320 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__77940", 1321 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__77966", 1322 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__78175", 1323 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__78176", 1324 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__78177", 1325 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__78180", 1326 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__78221", 1327 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__78222", 1328 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__78223", 1329 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__78224", 1330 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__78225", 1331 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__78226", 1332 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__78227", 1333 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__78229", 1334 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84010", 1335 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84011", 1336 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84012", 1337 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84015", 1338 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84016", 1339 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84017", 1340 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84018", 1341 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84019", 1342 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84020", 1343 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84021", 1344 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84022", 1345 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84025", 1346 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84165", 1347 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84260", 1348 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84264", 1349 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84271", 1350 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84273", 1351 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84277", 1352 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84280", 1353 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84282", 1354 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84285", 1355 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84306", 1356 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84309", 1357 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84374", 1358 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84428", 1359 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84429", 1360 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84432", 1361 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84433", 1362 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84434", 1363 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84452", 1364 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84453", 1365 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84454", 1366 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84455", 1367 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84456", 1368 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84457", 1369 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84458", 1370 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84459", 1371 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84460", 1372 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84461", 1373 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Output.Output__84462", 1374 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AVTs__77536", 1375 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AVTs__77562", 1376 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AVTs__77564", 1377 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AVTs__77574", 1378 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AVTs__77591", 1379 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AVTs__77596", 1380 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AVTs__77599", 1381 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AttributeSets_RefToUndefinedAttributeSet", 1382 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AttributeSets__91035", 1383 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AttributeSets__91038", 1384 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AttributeSets__91080", 1385 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AttributeSets__91081", 1386 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AttributeSets__91083", 1387 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AttributeSets__91098", 1388 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AttributeSets__91100", 1389 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.AttributeSets__91119", 1390 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes_Attribute_AttributeWithEmptyName", 1391 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes_Attribute_EmptyNameAttributeWithNS", 1392 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes_Attribute_InvalidNamespacePrefix", 1393 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes_Attribute_UseXmlnsNsAsNamespaceForAttribute", 1394 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes__78365", 1395 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes__78369", 1396 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes__78373", 1397 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes__78374", 1398 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes__78376", 1399 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes__78378", 1400 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes__78386", 1401 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes__81487", 1402 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes__81551", 1403 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes__89463", 1404 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes__89464", 1405 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Attributes__89465", 1406 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Copying_ResultTreeFragmentWithEscapedText", 1407 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements_Element_ElementWithNSFromNameFn", 1408 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements_Element_ElementWithNoNameSpecified", 1409 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements_Element_ElementWithNoNameSpecifiedButValidNS", 1410 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements_Element_UseXslElementWIthNamespaceEqualToXmlnsUri", 1411 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements_Element_UseXslElementWithNameSpaceAttrEqualToXmlnsUri", 1412 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements__78347", 1413 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements__78358", 1414 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements__78362", 1415 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements__78363", 1416 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements__83968", 1417 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements__89171", 1418 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements__89716", 1419 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements__89717", 1420 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Elements__89718", 1421 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.FormatNumber_DecimalFormatSameCharForDecimalAndGrpSep", 1422 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.FormatNumber_DecimalFormatZeroDigit", 1423 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.FormatNumber_DecimalFormatZeroDigit1", 1424 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.FormatNumber_DecimalFormatZeroDigit2", 1425 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.FormatNumber_FormatNumber_SemiColonDelimitsToWhitespace", 1426 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.FormatNumber_TestGrpSepr", 1427 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.FormatNumber_ValueOf_FormatNumberWithoutPositiveNumberFormatPattern", 1428 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Namespace_XPath_Conflict_XPath_XSLT", 1429 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Namespace_XPath_DefaultNamespace", 1430 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Namespace_XPath_NavigatorMethods", 1431 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Namespace_XPath_PredefinedPrefix_XML", 1432 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Namespace_XPath_PredefinedPrefix_XMLNS", 1433 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Namespace_XPath_SameQuery_DiffNamespace", 1434 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Namespace_XPath_ScopingRules", 1435 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number_NaNOrInvalidValue", 1436 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number_ValueAsEmptyNodeset", 1437 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number_ValueAsNodesetTest1", 1438 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84683", 1439 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84687", 1440 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84692", 1441 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84694", 1442 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84699", 1443 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84700", 1444 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84705", 1445 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84715", 1446 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84716", 1447 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84717", 1448 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84722", 1449 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84723", 1450 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84724", 1451 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__84725", 1452 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__91026", 1453 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__91027", 1454 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__91028", 1455 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Number__91029", 1456 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.ProcessingInstruction_InvalidPIName1", 1457 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.ProcessingInstruction__78196", 1458 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.ProcessingInstruction__78202", 1459 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.ProcessingInstruction__78204", 1460 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.ProcessingInstruction__78217", 1461 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.ProcessingInstruction__78218", 1462 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.ProcessingInstruction__78219", 1463 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text_DoeWithCdataInText", 1464 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text_Modified78311", 1465 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text__78245", 1466 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text__78272", 1467 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text__78273", 1468 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text__78274", 1469 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text__78275", 1470 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text__78276", 1471 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text__78281", 1472 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text__78308", 1473 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text__78309", 1474 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text__78311", 1475 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text_modified78308", 1476 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.Text_modified78309", 1477 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.attribset_attribset10", 1478 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.attribset_attribset17", 1479 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.attribset_attribset27", 1480 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.attribset_attribset29", 1481 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.attribset_attribset31", 1482 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.attribset_attribset32", 1483 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.attribset_attribset40", 1484 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.attribset_attribset41", 1485 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.attribset_attribset42", 1486 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.attribvaltemplate_attribvaltemplate08", 1487 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.copy_copy16", 1488 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.copy_copy19", 1489 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.copy_copy20", 1490 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.copy_copy21", 1491 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.copy_copy22", 1492 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.copy_copy38", 1493 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.copy_copy56", 1494 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.copy_copy58", 1495 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.copy_copy60", 1496 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.extend_extend02", 1497 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.extend_extend04", 1498 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey04", 1499 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey22", 1500 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey24", 1501 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey26", 1502 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey31", 1503 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey37", 1504 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey38", 1505 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey39", 1506 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey40", 1507 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey41", 1508 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey42", 1509 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey43", 1510 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey55", 1511 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey56", 1512 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey57", 1513 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey58", 1514 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey60", 1515 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey61", 1516 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.idkey_idkey62", 1517 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.match_match11", 1518 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.message_message15", 1519 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.namespace_namespace32", 1520 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.namespace_namespace34", 1521 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.numberformat_numberformat07", 1522 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.numberformat_numberformat35", 1523 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.numbering_numbering14", 1524 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.numbering_numbering17", 1525 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.numbering_numbering79", 1526 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.numbering_numbering91", 1527 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output01", 1528 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output02", 1529 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output03", 1530 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output04", 1531 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output05", 1532 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output06", 1533 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output08", 1534 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output09", 1535 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output10", 1536 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output110", 1537 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output111", 1538 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output113", 1539 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output17", 1540 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output22", 1541 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output25", 1542 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output26", 1543 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output28", 1544 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output32", 1545 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output33", 1546 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output34", 1547 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output35", 1548 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output36", 1549 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output37", 1550 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output38", 1551 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output39", 1552 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output40", 1553 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output48", 1554 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output49", 1555 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output50", 1556 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output52", 1557 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output59", 1558 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output60", 1559 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output61", 1560 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output62", 1561 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output70", 1562 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output72", 1563 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output73", 1564 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output74", 1565 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output75", 1566 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.output_output86", 1567 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.processorinfo_processorinfo03", 1568 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.select_select73", 1569 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.select_select74", 1570 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.sort_sort08", 1571 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.sort_sort27", 1572 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.ver_ver05", 1573 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Result-Tree.ver_ver06", 1574 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Import__84614", 1575 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Import__84615", 1576 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Import__91032", 1577 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Import__91148", 1578 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Import__91150", 1579 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Import__91151", 1580 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Import__91156", 1581 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Import__91157", 1582 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Import__91158", 1583 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Import__91165", 1584 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include_Include_IncludeStylesheetWithoutXslNamespace", 1585 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include_Include_IncludedStylesheetShouldHaveDifferentBaseUri", 1586 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include_NestedIncludes", 1587 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include_RelUriTest1", 1588 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include_RelUriTest2", 1589 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include_RelUriTest3", 1590 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include_RelUriTest4", 1591 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include_RelUriTest5", 1592 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include_RelUriTest6", 1593 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include__77489", 1594 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include__77504", 1595 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include__77515", 1596 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include__77736", 1597 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include__77745", 1598 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include__77750", 1599 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include__77751", 1600 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include__78295", 1601 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include__78296", 1602 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include__78398", 1603 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include__84463", 1604 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Include__84464", 1605 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace-alias_NSAlias_In_Import", 1606 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace-alias_Namespace-Alias_NSAliasForDefaultWithExcludeResPref", 1607 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace-alias_Namespace-Alias_Test1", 1608 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace-alias_Namespace-Alias_Test2", 1609 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace-alias_Namespace-Alias_WithinRTF", 1610 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace-alias__91781", 1611 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace-alias__91782", 1612 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace-alias__91785", 1613 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace-alias__91786", 1614 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace_CheckXmlnsResetOnResultTree", 1615 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace__77655", 1616 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace__77665", 1617 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace__77670", 1618 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace__77675", 1619 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Namespace__78027", 1620 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Stylesheet__91802", 1621 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Stylesheet__91803", 1622 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Stylesheet__91804", 1623 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Stylesheet__91806", 1624 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Stylesheet__91807", 1625 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Stylesheet__91808", 1626 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Stylesheet__91810", 1627 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Stylesheet__91811", 1628 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Structure.Stylesheet__91816", 1629 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Template.ConflictResolution__77619", 1630 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Template.ConflictResolution__77622", 1631 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Template.ConflictResolution__77870", 1632 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Template.ConflictResolution__77879", 1633 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Template.ConflictResolution__77897", 1634 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Template.ConflictResolution__77898", 1635 "libcore.xml.XsltXPathConformanceTestSuite$XsltTest#XSLT-Template.ConflictResolution__77902" 1636 ] 1637 }, 1638 { 1639 description: "Android's XPath fails 29 of 250 Jaxen XPath tests", 1640 bug: 3270761, 1641 names: [ 1642 "libcore.xml.JaxenXPathTestSuite$3#xml/defaultNamespace.xml / /dummy:a/dummy:b/dummy:c", 1643 "libcore.xml.JaxenXPathTestSuite$3#xml/evaluate.xml / //metatest[ evaluate(@select) = . ]", 1644 "libcore.xml.JaxenXPathTestSuite$3#xml/evaluate.xml / evaluate('//jumps/*')", 1645 "libcore.xml.JaxenXPathTestSuite$3#xml/evaluate.xml / evaluate('//jumps/*')/dog", 1646 "libcore.xml.JaxenXPathTestSuite$3#xml/evaluate.xml / evaluate('//jumps/object')/dog", 1647 "libcore.xml.JaxenXPathTestSuite$3#xml/evaluate.xml / evaluate('//jumps/object')/evaluate", 1648 "libcore.xml.JaxenXPathTestSuite$3#xml/evaluate.xml / evaluate('//jumps/object/dog')", 1649 "libcore.xml.JaxenXPathTestSuite$3#xml/namespaces.xml / /foo:a", 1650 "libcore.xml.JaxenXPathTestSuite$3#xml/namespaces.xml / /foo:a/b", 1651 "libcore.xml.JaxenXPathTestSuite$3#xml/namespaces.xml / /voo:a/b/c", 1652 "libcore.xml.JaxenXPathTestSuite$3#xml/namespaces.xml / /voo:a/bar:f", 1653 "libcore.xml.JaxenXPathTestSuite$3#xml/testNamespaces.xml / //namespace::*", 1654 "libcore.xml.JaxenXPathTestSuite$3#xml/testNamespaces.xml /Template/Application1 //namespace::*", 1655 "libcore.xml.JaxenXPathTestSuite$3#xml/testNamespaces.xml /Template/Application1 //namespace::xplt", 1656 "libcore.xml.JaxenXPathTestSuite$3#xml/text.xml / document('xml/web.xml')", 1657 "libcore.xml.JaxenXPathTestSuite$4#xml/message.xml / document('xml/message.xml')/message/body/data/items/item[name/text()='parentinfo']/value", 1658 "libcore.xml.JaxenXPathTestSuite$4#xml/namespaces.xml / /foo:a/alias:x/alias:y", 1659 "libcore.xml.JaxenXPathTestSuite$4#xml/namespaces.xml / /foo:a/b/c", 1660 "libcore.xml.JaxenXPathTestSuite$4#xml/namespaces.xml / /foo:a/foo:d/foo:e", 1661 "libcore.xml.JaxenXPathTestSuite$4#xml/namespaces.xml / /foo:a/foo:x/foo:y", 1662 "libcore.xml.JaxenXPathTestSuite$4#xml/text.xml / document('xml/web.xml')/web-app/servlet[1]/servlet-name", 1663 "libcore.xml.JaxenXPathTestSuite$4#xml/text.xml /foo/bar/cheese[1] concat(./@id,document('xml/web.xml')/web-app/servlet[1]/servlet-name,./@id)", 1664 "libcore.xml.JaxenXPathTestSuite$4#xml/web.xml /web-app/servlet[1] ends-with( servlet-class, 'S' )", 1665 "libcore.xml.JaxenXPathTestSuite$4#xml/web.xml /web-app/servlet[1] ends-with( servlet-class, 'Servlet' )", 1666 "libcore.xml.JaxenXPathTestSuite$4#xml/web.xml /web-app/servlet[1] lower-case( servlet-class )", 1667 "libcore.xml.JaxenXPathTestSuite$4#xml/web.xml /web-app/servlet[1] upper-case( servlet-class )", 1668 "libcore.xml.JaxenXPathTestSuite$4#xml/web.xml /web-app/servlet[1] upper-case( servlet-class, 'es-ES-Traditional_WIN' )", 1669 "libcore.xml.JaxenXPathTestSuite$4#xml/web.xml /web-app/servlet[1] upper-case( servlet-class, 'fr' )", 1670 "libcore.xml.JaxenXPathTestSuite$4#xml/web.xml /web-app/servlet[1] upper-case( servlet-class, 'fr-CA' )" 1671 ] 1672 }, 1673 { 1674 description: "Android's PKIX validation fails on many NIST PKIX tests", 1675 bug: 8030138, 1676 names: [ 1677 "libcore.java.security.cert.X509CertificateNistPkitsTest#testBasicCertificateRevocationTests_InvalidLongSerialNumberTest18", 1678 "libcore.java.security.cert.X509CertificateNistPkitsTest#testBasicCertificateRevocationTests_InvalidNegativeSerialNumberTest15", 1679 "libcore.java.security.cert.X509CertificateNistPkitsTest#testBasicCertificateRevocationTests_InvalidRevokedCATest2", 1680 "libcore.java.security.cert.X509CertificateNistPkitsTest#testBasicCertificateRevocationTests_InvalidRevokedEETest3", 1681 "libcore.java.security.cert.X509CertificateNistPkitsTest#testBasicCertificateRevocationTests_InvalidSeparateCertificateandCRLKeysTest20", 1682 "libcore.java.security.cert.X509CertificateNistPkitsTest#testBasicCertificateRevocationTests_InvalidSeparateCertificateandCRLKeysTest21", 1683 "libcore.java.security.cert.X509CertificateNistPkitsTest#testBasicCertificateRevocationTests_InvalidUnknownCRLEntryExtensionTest8", 1684 "libcore.java.security.cert.X509CertificateNistPkitsTest#testBasicCertificateRevocationTests_ValidSeparateCertificateandCRLKeysTest19", 1685 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDeltaCRLs_InvaliddeltaCRLTest3", 1686 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDeltaCRLs_InvaliddeltaCRLTest4", 1687 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDeltaCRLs_InvaliddeltaCRLTest6", 1688 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDeltaCRLs_InvaliddeltaCRLTest9", 1689 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_InvalidIDPwithindirectCRLTest23", 1690 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_InvalidcRLIssuerTest34", 1691 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_InvaliddistributionPointTest2", 1692 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_InvaliddistributionPointTest6", 1693 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_InvalidonlySomeReasonsTest15", 1694 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_InvalidonlySomeReasonsTest16", 1695 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_InvalidonlySomeReasonsTest20", 1696 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_InvalidonlySomeReasonsTest21", 1697 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_ValidIDPwithindirectCRLTest24", 1698 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_ValidIDPwithindirectCRLTest25", 1699 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_ValidcRLIssuerTest28", 1700 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_ValidcRLIssuerTest29", 1701 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_ValidcRLIssuerTest30", 1702 "libcore.java.security.cert.X509CertificateNistPkitsTest#testDistributionPoints_ValidcRLIssuerTest33", 1703 "libcore.java.security.cert.X509CertificateNistPkitsTest#testKeyUsage_ValidSelfIssuedDNnameConstraintsTest19", 1704 "libcore.java.security.cert.X509CertificateNistPkitsTest#testVerifyingNameChaining_ValidRFC3280OptionalAttributeTypesTest8", 1705 "libcore.java.security.cert.X509CertificateNistPkitsTest#testVerifyingPathswithSelfIssuedCertificates_InvalidBasicSelfIssuedOldWithNewTest2", 1706 "libcore.java.security.cert.X509CertificateNistPkitsTest#testVerifyingPathswithSelfIssuedCertificates_ValidBasicSelfIssuedCRLSigningKeyTest6", 1707 "libcore.java.security.cert.X509CertificateNistPkitsTest#testVerifyingPathswithSelfIssuedCertificates_ValidBasicSelfIssuedNewWithOldTest4" 1708 ] 1709 } 1710 ] 1711