--- old/test/hotspot/jtreg/serviceability/tmtools/jstat/utils/JstatGcNewResults.java 2018-05-15 09:48:48.685142032 -0400 +++ new/test/hotspot/jtreg/serviceability/tmtools/jstat/utils/JstatGcNewResults.java 2018-05-15 09:48:48.523141635 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 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 @@ -77,10 +77,6 @@ int YGC = getIntValue("YGC"); float YGCT = getFloatValue("YGCT"); - if (YGC > 0) { - assertThat(YGCT > 0, "Number of young generation GC Events is " + YGC + ", but YGCT is 0"); - } - int TT = getIntValue("TT"); int MTT = getIntValue("MTT"); assertThat(TT <= MTT, "TT > MTT (tenuring threshold > maximum tenuring threshold)");