Skip to content

Commit 7e87c07

Browse files
fgualliniseanjmullan
authored andcommittedNov 1, 2024
8340116: test/jdk/sun/security/tools/jarsigner/PreserveRawManifestEntryAndDigest.java can fail due to regex
Reviewed-by: mullan
1 parent da0e9e3 commit 7e87c07

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎test/jdk/sun/security/tools/jarsigner/PreserveRawManifestEntryAndDigest.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,8 @@ String[] fromFirstToSecondEmptyLine(String[] lines) {
243243
* @see "concise_jarsigner.sh"
244244
*/
245245
String[] getExpectedJarSignerOutputUpdatedContentNotValidatedBySignerA(
246-
String jarFilename, String digestalg,
247246
String firstAddedFilename, String secondAddedFilename) {
248-
final String TS = ".{28,29}"; // matches a timestamp
247+
final String TS = ".{28,34}"; // matches a timestamp
249248
List<String> expLines = new ArrayList<>();
250249
expLines.add("s k *\\d+ " + TS + " META-INF/MANIFEST[.]MF");
251250
expLines.add(" *\\d+ " + TS + " META-INF/B[.]SF");
@@ -347,7 +346,6 @@ String test(String name,
347346
assertMatchByLines(
348347
fromFirstToSecondEmptyLine(o.getStdout().split("\\R")),
349348
getExpectedJarSignerOutputUpdatedContentNotValidatedBySignerA(
350-
jarFilename4, digestalg,
351349
firstAddedFilename, secondAddedFilename));
352350

353351
// double-check reading the files with a verifying JarFile

0 commit comments

Comments
 (0)
Please sign in to comment.