Skip to content

Commit 7b81f8e

Browse files
committedMar 23, 2021
8263915: runtime/cds/appcds/MismatchedPathTriggerMemoryRelease.java fails when UseCompressedClassPointers is off
Reviewed-by: minqi
1 parent 2da882c commit 7b81f8e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎test/hotspot/jtreg/runtime/cds/appcds/MismatchedPathTriggerMemoryRelease.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -37,8 +37,7 @@ public class MismatchedPathTriggerMemoryRelease {
3737
private static String ERR_MSGS[] = {
3838
"UseSharedSpaces: shared class paths mismatch (hint: enable -Xlog:class+path=info to diagnose the failure)",
3939
"UseSharedSpaces: Unable to map shared spaces"};
40-
private static String RELEASE_SPACE_MATCH =
41-
"Released shared space\\s(\\(archive\\s*\\+\\s*class\\) | ?)0(x|X)[0-9a-fA-F]+$";
40+
private static String RELEASE_SPACE_MATCH = "Released shared space .* 0(x|X)[0-9a-fA-F]+$";
4241
private static String OS_RELEASE_MSG = "os::release_memory failed";
4342

4443
public static void main(String[] args) throws Exception {

0 commit comments

Comments
 (0)
Please sign in to comment.