--- old/test/hotspot/jtreg/gc/survivorAlignment/SurvivorAlignmentTestMain.java 2018-10-08 18:33:38.000000000 -0400 +++ new/test/hotspot/jtreg/gc/survivorAlignment/SurvivorAlignmentTestMain.java 2018-10-08 18:33:37.000000000 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -71,7 +71,8 @@ private static final String SERIAL_TENURED = "Tenured Gen"; private static final String CMS_TENURED = "CMS Old Gen"; private static final String PS_TENURED = "PS Old Gen"; - private static final String G1_TENURED = "G1 Old Gen"; + private static final String G1_TENURED_LEGACY = "G1 Old Gen"; + private static final String G1_TENURED = "G1 Old Space"; private static final long G1_HEAP_REGION_SIZE = Optional.ofNullable( SurvivorAlignmentTestMain.WHITE_BOX.getUintxVMFlag( @@ -177,6 +178,7 @@ break; case SurvivorAlignmentTestMain.SERIAL_TENURED: case SurvivorAlignmentTestMain.PS_TENURED: + case SurvivorAlignmentTestMain.G1_TENURED_LEGACY: case SurvivorAlignmentTestMain.G1_TENURED: Asserts.assertNull(tenuredHelper, "Only one bean for tenured space is expected.");