# HG changeset patch # User dtitov # Date 1559872648 25200 # Node ID 5a5f83da57eb07a2effed22ce6bf7131a25c7573 # Parent 0a7af38ef32a86dff469d9aeb380d66f242d9b53 8206074: nsk/jdi/EventRequestManager/createStepRequest/crstepreq001/TestDescription.java is timing out Reviewed-by: cjplummer, gadams diff -r 0a7af38ef32a -r 5a5f83da57eb test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq001.java --- a/test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq001.java Thu Jun 06 17:48:06 2019 -0700 +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/createStepRequest/crstepreq001.java Thu Jun 06 18:57:28 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2001, 2019, 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 @@ -166,7 +166,10 @@ } enabledStepRequests.forEach(s -> erManager.deleteEventRequest(s)); - + // There is a chance that a single step event had been posted after + // the step request was created and before it was deleted. In this + // case the debuggee VM is in the suspended state. + vm.resume(); return quitDebuggee(tot_res); }