From b67814941f16e96681fdbfa5354fab612b559c65 Mon Sep 17 00:00:00 2001 From: Roland Westrelin Date: Wed, 1 Jul 2020 17:28:49 +0200 Subject: [PATCH 01/13] 8229495: SIGILL in C2 generated OSR compilation Reviewed-by: kvn, chagedorn --- src/hotspot/share/opto/classes.hpp | 2 + src/hotspot/share/opto/compile.cpp | 10 +++ src/hotspot/share/opto/loopPredicate.cpp | 21 ++++- src/hotspot/share/opto/loopTransform.cpp | 88 +++++++++++-------- src/hotspot/share/opto/loopnode.cpp | 2 +- src/hotspot/share/opto/loopnode.hpp | 6 +- src/hotspot/share/opto/loopopts.cpp | 42 ++++++--- src/hotspot/share/opto/macro.cpp | 5 +- src/hotspot/share/opto/node.hpp | 15 ++-- src/hotspot/share/opto/opaquenode.hpp | 17 ++++ src/hotspot/share/runtime/vmStructs.cpp | 2 +- .../loopopts/TestRCEAfterUnrolling.java | 79 +++++++++++++++++ 12 files changed, 223 insertions(+), 66 deletions(-) create mode 100644 test/hotspot/jtreg/compiler/loopopts/TestRCEAfterUnrolling.java diff --git a/src/hotspot/share/opto/classes.hpp b/src/hotspot/share/opto/classes.hpp index f0a12ef1dfd..e609851772f 100644 --- a/src/hotspot/share/opto/classes.hpp +++ b/src/hotspot/share/opto/classes.hpp @@ -234,6 +234,8 @@ macro(NegF) macro(NeverBranch) macro(OnSpinWait) macro(Opaque1) +macro(OpaqueLoopInit) +macro(OpaqueLoopStride) macro(Opaque2) macro(Opaque3) macro(Opaque4) diff --git a/src/hotspot/share/opto/compile.cpp b/src/hotspot/share/opto/compile.cpp index 012093fd7e9..ec22d0444f4 100644 --- a/src/hotspot/share/opto/compile.cpp +++ b/src/hotspot/share/opto/compile.cpp @@ -1807,7 +1807,17 @@ void Compile::remove_opaque4_nodes(PhaseIterGVN &igvn) { for (int i = opaque4_count(); i > 0; i--) { Node* opaq = opaque4_node(i-1); assert(opaq->Opcode() == Op_Opaque4, "Opaque4 only"); + // With Opaque4 nodes, the expectation is that the test of input 1 + // is always equal to the constant value of input 2. So we can + // remove the Opaque4 and replace it by input 2. In debug builds, + // leave the non constant test in instead to sanity check that it + // never fails (if it does, that subgraph was constructed so, at + // runtime, a Halt node is executed). +#ifdef ASSERT + igvn.replace_node(opaq, opaq->in(1)); +#else igvn.replace_node(opaq, opaq->in(2)); +#endif } assert(opaque4_count() == 0, "should be empty"); } diff --git a/src/hotspot/share/opto/loopPredicate.cpp b/src/hotspot/share/opto/loopPredicate.cpp index b85347ed5c3..3774d8a0197 100644 --- a/src/hotspot/share/opto/loopPredicate.cpp +++ b/src/hotspot/share/opto/loopPredicate.cpp @@ -1255,8 +1255,9 @@ ProjNode* PhaseIdealLoop::insert_initial_skeleton_predicate(IfNode* iff, IdealLo Node* init, Node* limit, jint stride, Node* rng, bool &overflow, Deoptimization::DeoptReason reason) { + // First predicate for the initial value on first loop iteration assert(proj->_con && predicate_proj->_con, "not a range check?"); - Node* opaque_init = new Opaque1Node(C, init); + Node* opaque_init = new OpaqueLoopInitNode(C, init); register_new_node(opaque_init, upper_bound_proj); BoolNode* bol = rc_predicate(loop, upper_bound_proj, scale, offset, opaque_init, limit, stride, rng, (stride > 0) != (scale > 0), overflow); Node* opaque_bol = new Opaque4Node(C, bol, _igvn.intcon(1)); // This will go away once loop opts are over @@ -1264,6 +1265,24 @@ ProjNode* PhaseIdealLoop::insert_initial_skeleton_predicate(IfNode* iff, IdealLo ProjNode* new_proj = create_new_if_for_predicate(predicate_proj, NULL, reason, overflow ? Op_If : iff->Opcode()); _igvn.replace_input_of(new_proj->in(0), 1, opaque_bol); assert(opaque_init->outcnt() > 0, "should be used"); + + // Second predicate for init + (current stride - initial stride) + // This is identical to the previous predicate initially but as + // unrolling proceeds current stride is updated. + Node* init_stride = loop->_head->as_CountedLoop()->stride(); + Node* opaque_stride = new OpaqueLoopStrideNode(C, init_stride); + register_new_node(opaque_stride, new_proj); + Node* max_value = new SubINode(opaque_stride, init_stride); + register_new_node(max_value, new_proj); + max_value = new AddINode(opaque_init, max_value); + register_new_node(max_value, new_proj); + bol = rc_predicate(loop, new_proj, scale, offset, max_value, limit, stride, rng, (stride > 0) != (scale > 0), overflow); + opaque_bol = new Opaque4Node(C, bol, _igvn.intcon(1)); + register_new_node(opaque_bol, new_proj); + new_proj = create_new_if_for_predicate(predicate_proj, NULL, reason, overflow ? Op_If : iff->Opcode()); + _igvn.replace_input_of(new_proj->in(0), 1, opaque_bol); + assert(max_value->outcnt() > 0, "should be used"); + return new_proj; } diff --git a/src/hotspot/share/opto/loopTransform.cpp b/src/hotspot/share/opto/loopTransform.cpp index aa039f1d1dd..628b782d83d 100644 --- a/src/hotspot/share/opto/loopTransform.cpp +++ b/src/hotspot/share/opto/loopTransform.cpp @@ -1141,7 +1141,7 @@ void PhaseIdealLoop::ensure_zero_trip_guard_proj(Node* node, bool is_main_loop) // CastII/ConvI2L nodes cause some data paths to die. For consistency, // the control paths must die too but the range checks were removed by // predication. The range checks that we add here guarantee that they do. -void PhaseIdealLoop::copy_skeleton_predicates_to_main_loop_helper(Node* predicate, Node* start, Node* end, +void PhaseIdealLoop::copy_skeleton_predicates_to_main_loop_helper(Node* predicate, Node* init, Node* stride, IdealLoopTree* outer_loop, LoopNode* outer_main_head, uint dd_main_head, const uint idx_before_pre_post, const uint idx_after_post_before_pre, Node* zero_trip_guard_proj_main, @@ -1159,6 +1159,11 @@ void PhaseIdealLoop::copy_skeleton_predicates_to_main_loop_helper(Node* predicat predicate = iff->in(0); Node* current_proj = outer_main_head->in(LoopNode::EntryControl); Node* prev_proj = current_proj; + Node* opaque_init = new OpaqueLoopInitNode(C, init); + register_new_node(opaque_init, outer_main_head->in(LoopNode::EntryControl)); + Node* opaque_stride = new OpaqueLoopStrideNode(C, stride); + register_new_node(opaque_stride, outer_main_head->in(LoopNode::EntryControl)); + while (predicate != NULL && predicate->is_Proj() && predicate->in(0)->is_If()) { iff = predicate->in(0)->as_If(); uncommon_proj = iff->proj_out(1 - predicate->as_Proj()->_con); @@ -1169,10 +1174,11 @@ void PhaseIdealLoop::copy_skeleton_predicates_to_main_loop_helper(Node* predicat // Clone the skeleton predicate twice and initialize one with the initial // value of the loop induction variable. Leave the other predicate // to be initialized when increasing the stride during loop unrolling. - prev_proj = clone_skeleton_predicate(iff, start, predicate, uncommon_proj, current_proj, outer_loop, prev_proj); - assert(skeleton_predicate_has_opaque(prev_proj->in(0)->as_If()) == (start->Opcode() == Op_Opaque1), ""); - prev_proj = clone_skeleton_predicate(iff, end, predicate, uncommon_proj, current_proj, outer_loop, prev_proj); - assert(skeleton_predicate_has_opaque(prev_proj->in(0)->as_If()) == (end->Opcode() == Op_Opaque1), ""); + prev_proj = clone_skeleton_predicate(iff, opaque_init, NULL, predicate, uncommon_proj, current_proj, outer_loop, prev_proj); + assert(skeleton_predicate_has_opaque(prev_proj->in(0)->as_If()), ""); + + prev_proj = clone_skeleton_predicate(iff, init, stride, predicate, uncommon_proj, current_proj, outer_loop, prev_proj); + assert(!skeleton_predicate_has_opaque(prev_proj->in(0)->as_If()), ""); // Rewire any control inputs from the cloned skeleton predicates down to the main and post loop for data nodes that are part of the // main loop (and were cloned to the pre and post loop). @@ -1238,14 +1244,14 @@ bool PhaseIdealLoop::skeleton_predicate_has_opaque(IfNode* iff) { } continue; } - if (op == Op_Opaque1) { + if (n->is_Opaque1()) { return true; } } return false; } -Node* PhaseIdealLoop::clone_skeleton_predicate(Node* iff, Node* value, Node* predicate, Node* uncommon_proj, +Node* PhaseIdealLoop::clone_skeleton_predicate(Node* iff, Node* new_init, Node* new_stride, Node* predicate, Node* uncommon_proj, Node* current_proj, IdealLoopTree* outer_loop, Node* prev_proj) { Node_Stack to_clone(2); to_clone.push(iff->in(1), 1); @@ -1265,12 +1271,19 @@ Node* PhaseIdealLoop::clone_skeleton_predicate(Node* iff, Node* value, Node* pre to_clone.push(m, 1); continue; } - if (op == Op_Opaque1) { + if (m->is_Opaque1()) { if (n->_idx < current) { n = n->clone(); + register_new_node(n, current_proj); + } + if (op == Op_OpaqueLoopInit) { + n->set_req(i, new_init); + } else { + assert(op == Op_OpaqueLoopStride, "unexpected opaque node"); + if (new_stride != NULL) { + n->set_req(i, new_stride); + } } - n->set_req(i, value); - register_new_node(n, current_proj); to_clone.set_node(n); } for (;;) { @@ -1320,7 +1333,7 @@ Node* PhaseIdealLoop::clone_skeleton_predicate(Node* iff, Node* value, Node* pre return proj; } -void PhaseIdealLoop::copy_skeleton_predicates_to_main_loop(CountedLoopNode* pre_head, Node* start, Node* end, +void PhaseIdealLoop::copy_skeleton_predicates_to_main_loop(CountedLoopNode* pre_head, Node* init, Node* stride, IdealLoopTree* outer_loop, LoopNode* outer_main_head, uint dd_main_head, const uint idx_before_pre_post, const uint idx_after_post_before_pre, Node* zero_trip_guard_proj_main, @@ -1340,10 +1353,10 @@ void PhaseIdealLoop::copy_skeleton_predicates_to_main_loop(CountedLoopNode* pre_ } } predicate = find_predicate_insertion_point(entry, Deoptimization::Reason_predicate); - copy_skeleton_predicates_to_main_loop_helper(predicate, start, end, outer_loop, outer_main_head, dd_main_head, + copy_skeleton_predicates_to_main_loop_helper(predicate, init, stride, outer_loop, outer_main_head, dd_main_head, idx_before_pre_post, idx_after_post_before_pre, zero_trip_guard_proj_main, zero_trip_guard_proj_post, old_new); - copy_skeleton_predicates_to_main_loop_helper(profile_predicate, start, end, outer_loop, outer_main_head, dd_main_head, + copy_skeleton_predicates_to_main_loop_helper(profile_predicate, init, stride, outer_loop, outer_main_head, dd_main_head, idx_before_pre_post, idx_after_post_before_pre, zero_trip_guard_proj_main, zero_trip_guard_proj_post, old_new); } @@ -1494,10 +1507,8 @@ void PhaseIdealLoop::insert_pre_post_loops(IdealLoopTree *loop, Node_List &old_n // CastII for the main loop: Node* castii = cast_incr_before_loop(pre_incr, min_taken, main_head); assert(castii != NULL, "no castII inserted"); - Node* opaque_castii = new Opaque1Node(C, castii); - register_new_node(opaque_castii, outer_main_head->in(LoopNode::EntryControl)); assert(post_head->in(1)->is_IfProj(), "must be zero-trip guard If node projection of the post loop"); - copy_skeleton_predicates_to_main_loop(pre_head, castii, opaque_castii, outer_loop, outer_main_head, dd_main_head, + copy_skeleton_predicates_to_main_loop(pre_head, castii, stride, outer_loop, outer_main_head, dd_main_head, idx_before_pre_post, idx_after_post_before_pre, min_taken, post_head->in(1), old_new); // Step B4: Shorten the pre-loop to run only 1 iteration (for now). @@ -1790,6 +1801,13 @@ void PhaseIdealLoop::update_main_loop_skeleton_predicates(Node* ctrl, CountedLoo Node* prev_proj = ctrl; LoopNode* outer_loop_head = loop_head->skip_strip_mined(); IdealLoopTree* outer_loop = get_loop(outer_loop_head); + + // Compute the value of the loop induction variable at the end of the + // first iteration of the unrolled loop: init + new_stride_con - init_inc + int new_stride_con = stride_con * 2; + Node* max_value = _igvn.intcon(new_stride_con); + set_ctrl(max_value, C->root()); + while (entry != NULL && entry->is_Proj() && entry->in(0)->is_If()) { IfNode* iff = entry->in(0)->as_If(); ProjNode* proj = iff->proj_out(1 - entry->as_Proj()->_con); @@ -1805,18 +1823,8 @@ void PhaseIdealLoop::update_main_loop_skeleton_predicates(Node* ctrl, CountedLoo // tell. Kill it in any case. _igvn.replace_input_of(iff, 1, iff->in(1)->in(2)); } else { - // Add back the predicate for the value at the beginning of the first entry - prev_proj = clone_skeleton_predicate(iff, init, entry, proj, ctrl, outer_loop, prev_proj); - assert(!skeleton_predicate_has_opaque(prev_proj->in(0)->as_If()), "unexpected"); - // Compute the value of the loop induction variable at the end of the - // first iteration of the unrolled loop: init + new_stride_con - init_inc - int init_inc = stride_con/loop_head->unrolled_count(); - assert(init_inc != 0, "invalid loop increment"); - int new_stride_con = stride_con * 2; - Node* max_value = _igvn.intcon(new_stride_con - init_inc); - max_value = new AddINode(init, max_value); - register_new_node(max_value, get_ctrl(iff->in(1))); - prev_proj = clone_skeleton_predicate(iff, max_value, entry, proj, ctrl, outer_loop, prev_proj); + // Add back predicates updated for the new stride. + prev_proj = clone_skeleton_predicate(iff, init, max_value, entry, proj, ctrl, outer_loop, prev_proj); assert(!skeleton_predicate_has_opaque(prev_proj->in(0)->as_If()), "unexpected"); } } @@ -2670,22 +2678,26 @@ int PhaseIdealLoop::do_range_check(IdealLoopTree *loop, Node_List &old_new) { // (0-offset)/scale could be outside of loop iterations range. conditional_rc = true; Node* init = cl->init_trip(); - Node* opaque_init = new Opaque1Node(C, init); + Node* opaque_init = new OpaqueLoopInitNode(C, init); register_new_node(opaque_init, predicate_proj); - // template predicate so it can be updated on next unrolling - predicate_proj = add_range_check_predicate(loop, cl, predicate_proj, scale_con, offset, limit, stride_con, opaque_init); - assert(skeleton_predicate_has_opaque(predicate_proj->in(0)->as_If()), "unexpected"); + // predicate on first value of first iteration predicate_proj = add_range_check_predicate(loop, cl, predicate_proj, scale_con, offset, limit, stride_con, init); assert(!skeleton_predicate_has_opaque(predicate_proj->in(0)->as_If()), "unexpected"); - int init_inc = stride_con/cl->unrolled_count(); - assert(init_inc != 0, "invalid loop increment"); - Node* max_value = _igvn.intcon(stride_con - init_inc); - max_value = new AddINode(init, max_value); + + // template predicate so it can be updated on next unrolling + predicate_proj = add_range_check_predicate(loop, cl, predicate_proj, scale_con, offset, limit, stride_con, opaque_init); + assert(skeleton_predicate_has_opaque(predicate_proj->in(0)->as_If()), "unexpected"); + + Node* opaque_stride = new OpaqueLoopStrideNode(C, cl->stride()); + register_new_node(opaque_stride, predicate_proj); + Node* max_value = new SubINode(opaque_stride, cl->stride()); + register_new_node(max_value, predicate_proj); + max_value = new AddINode(opaque_init, max_value); register_new_node(max_value, predicate_proj); - // predicate on last value of first iteration (in case unrolling has already happened) predicate_proj = add_range_check_predicate(loop, cl, predicate_proj, scale_con, offset, limit, stride_con, max_value); - assert(!skeleton_predicate_has_opaque(predicate_proj->in(0)->as_If()), "unexpected"); + assert(skeleton_predicate_has_opaque(predicate_proj->in(0)->as_If()), "unexpected"); + } else { if (PrintOpto) { tty->print_cr("missed RCE opportunity"); diff --git a/src/hotspot/share/opto/loopnode.cpp b/src/hotspot/share/opto/loopnode.cpp index 3be93ec8073..87ff74e5c5b 100644 --- a/src/hotspot/share/opto/loopnode.cpp +++ b/src/hotspot/share/opto/loopnode.cpp @@ -2580,7 +2580,7 @@ uint IdealLoopTree::est_loop_clone_sz(uint factor) const { uint const bc = 13; uint const cc = 17; - uint const sz = _body.size() + (_body.size() + 7) / 8; + uint const sz = _body.size() + (_body.size() + 7) / 2; uint estimate = factor * (sz + bc) + cc; assert((estimate - cc) / factor == sz + bc, "overflow"); diff --git a/src/hotspot/share/opto/loopnode.hpp b/src/hotspot/share/opto/loopnode.hpp index 97a97ff8290..2fbeb04d5f9 100644 --- a/src/hotspot/share/opto/loopnode.hpp +++ b/src/hotspot/share/opto/loopnode.hpp @@ -788,13 +788,13 @@ private: #ifdef ASSERT void ensure_zero_trip_guard_proj(Node* node, bool is_main_loop); #endif - void copy_skeleton_predicates_to_main_loop_helper(Node* predicate, Node* start, Node* end, IdealLoopTree* outer_loop, LoopNode* outer_main_head, + void copy_skeleton_predicates_to_main_loop_helper(Node* predicate, Node* init, Node* stride, IdealLoopTree* outer_loop, LoopNode* outer_main_head, uint dd_main_head, const uint idx_before_pre_post, const uint idx_after_post_before_pre, Node* zero_trip_guard_proj_main, Node* zero_trip_guard_proj_post, const Node_List &old_new); - void copy_skeleton_predicates_to_main_loop(CountedLoopNode* pre_head, Node* start, Node* end, IdealLoopTree* outer_loop, LoopNode* outer_main_head, + void copy_skeleton_predicates_to_main_loop(CountedLoopNode* pre_head, Node* init, Node* stride, IdealLoopTree* outer_loop, LoopNode* outer_main_head, uint dd_main_head, const uint idx_before_pre_post, const uint idx_after_post_before_pre, Node* zero_trip_guard_proj_main, Node* zero_trip_guard_proj_post, const Node_List &old_new); - Node* clone_skeleton_predicate(Node* iff, Node* value, Node* predicate, Node* uncommon_proj, + Node* clone_skeleton_predicate(Node* iff, Node* new_init, Node* new_stride, Node* predicate, Node* uncommon_proj, Node* current_proj, IdealLoopTree* outer_loop, Node* prev_proj); bool skeleton_predicate_has_opaque(IfNode* iff); void update_main_loop_skeleton_predicates(Node* ctrl, CountedLoopNode* loop_head, Node* init, int stride_con); diff --git a/src/hotspot/share/opto/loopopts.cpp b/src/hotspot/share/opto/loopopts.cpp index d29970b5d36..45166632cce 100644 --- a/src/hotspot/share/opto/loopopts.cpp +++ b/src/hotspot/share/opto/loopopts.cpp @@ -952,29 +952,43 @@ void PhaseIdealLoop::try_move_store_after_loop(Node* n) { Node *PhaseIdealLoop::split_if_with_blocks_pre( Node *n ) { // Cloning these guys is unlikely to win int n_op = n->Opcode(); - if( n_op == Op_MergeMem ) return n; - if( n->is_Proj() ) return n; + if (n_op == Op_MergeMem) { + return n; + } + if (n->is_Proj()) { + return n; + } // Do not clone-up CmpFXXX variations, as these are always // followed by a CmpI - if( n->is_Cmp() ) return n; - // Attempt to use a conditional move instead of a phi/branch - if( ConditionalMoveLimit > 0 && n_op == Op_Region ) { - Node *cmov = conditional_move( n ); - if( cmov ) return cmov; - } - if( n->is_CFG() || n->is_LoadStore() ) + if (n->is_Cmp()) { return n; - if( n_op == Op_Opaque1 || // Opaque nodes cannot be mod'd - n_op == Op_Opaque2 ) { - if( !C->major_progress() ) // If chance of no more loop opts... + } + // Attempt to use a conditional move instead of a phi/branch + if (ConditionalMoveLimit > 0 && n_op == Op_Region) { + Node *cmov = conditional_move( n ); + if (cmov) { + return cmov; + } + } + if (n->is_CFG() || n->is_LoadStore()) { + return n; + } + if (n->is_Opaque1() || // Opaque nodes cannot be mod'd + n_op == Op_Opaque2) { + if (!C->major_progress()) { // If chance of no more loop opts... _igvn._worklist.push(n); // maybe we'll remove them + } return n; } - if( n->is_Con() ) return n; // No cloning for Con nodes + if (n->is_Con()) { + return n; // No cloning for Con nodes + } Node *n_ctrl = get_ctrl(n); - if( !n_ctrl ) return n; // Dead node + if (!n_ctrl) { + return n; // Dead node + } Node* res = try_move_store_before_loop(n, n_ctrl); if (res != NULL) { diff --git a/src/hotspot/share/opto/macro.cpp b/src/hotspot/share/opto/macro.cpp index dd10d626987..b4e215342dd 100644 --- a/src/hotspot/share/opto/macro.cpp +++ b/src/hotspot/share/opto/macro.cpp @@ -2637,9 +2637,10 @@ void PhaseMacroExpand::eliminate_macro_nodes() { break; case Node::Class_SubTypeCheck: break; + case Node::Class_Opaque1: + break; default: assert(n->Opcode() == Op_LoopLimit || - n->Opcode() == Op_Opaque1 || n->Opcode() == Op_Opaque2 || n->Opcode() == Op_Opaque3 || BarrierSet::barrier_set()->barrier_set_c2()->is_gc_barrier_node(n), @@ -2675,7 +2676,7 @@ bool PhaseMacroExpand::expand_macro_nodes() { C->remove_macro_node(n); _igvn._worklist.push(n); success = true; - } else if (n->Opcode() == Op_Opaque1 || n->Opcode() == Op_Opaque2) { + } else if (n->is_Opaque1() || n->Opcode() == Op_Opaque2) { _igvn.replace_node(n, n->in(1)); success = true; #if INCLUDE_RTM_OPT diff --git a/src/hotspot/share/opto/node.hpp b/src/hotspot/share/opto/node.hpp index dc889ee6fc0..8e243547ea4 100644 --- a/src/hotspot/share/opto/node.hpp +++ b/src/hotspot/share/opto/node.hpp @@ -116,6 +116,7 @@ class MulNode; class MultiNode; class MultiBranchNode; class NeverBranchNode; +class Opaque1Node; class OuterStripMinedLoopNode; class OuterStripMinedLoopEndNode; class Node; @@ -609,9 +610,9 @@ public: // This enum is used only for C2 ideal and mach nodes with is_() methods // so that it's values fits into 16 bits. enum NodeClasses { - Bit_Node = 0x0000, - Class_Node = 0x0000, - ClassMask_Node = 0xFFFF, + Bit_Node = 0x00000000, + Class_Node = 0x00000000, + ClassMask_Node = 0xFFFFFFFF, DEFINE_CLASS_ID(Multi, Node, 0) DEFINE_CLASS_ID(SafePoint, Multi, 0) @@ -716,6 +717,7 @@ public: DEFINE_CLASS_ID(Vector, Node, 13) DEFINE_CLASS_ID(ClearArray, Node, 14) DEFINE_CLASS_ID(Halt, Node, 15) + DEFINE_CLASS_ID(Opaque1, Node, 16) _max_classes = ClassMask_Halt }; @@ -744,14 +746,14 @@ public: class PD; private: - jushort _class_id; + juint _class_id; jushort _flags; static juint max_flags(); protected: // These methods should be called from constructors only. - void init_class_id(jushort c) { + void init_class_id(juint c) { _class_id = c; // cast out const } void init_flags(uint fl) { @@ -764,7 +766,7 @@ protected: } public: - const jushort class_id() const { return _class_id; } + const juint class_id() const { return _class_id; } const jushort flags() const { return _flags; } @@ -865,6 +867,7 @@ public: DEFINE_CLASS_QUERY(Mul) DEFINE_CLASS_QUERY(Multi) DEFINE_CLASS_QUERY(MultiBranch) + DEFINE_CLASS_QUERY(Opaque1) DEFINE_CLASS_QUERY(OuterStripMinedLoop) DEFINE_CLASS_QUERY(OuterStripMinedLoopEnd) DEFINE_CLASS_QUERY(Parm) diff --git a/src/hotspot/share/opto/opaquenode.hpp b/src/hotspot/share/opto/opaquenode.hpp index 18cbbb08c64..c6d27948748 100644 --- a/src/hotspot/share/opto/opaquenode.hpp +++ b/src/hotspot/share/opto/opaquenode.hpp @@ -38,6 +38,7 @@ class Opaque1Node : public Node { Opaque1Node(Compile* C, Node *n) : Node(NULL, n) { // Put it on the Macro nodes list to removed during macro nodes expansion. init_flags(Flag_is_macro); + init_class_id(Class_Opaque1); C->add_macro_node(this); } // Special version for the pre-loop to hold the original loop limit @@ -45,6 +46,7 @@ class Opaque1Node : public Node { Opaque1Node(Compile* C, Node *n, Node* orig_limit) : Node(NULL, n, orig_limit) { // Put it on the Macro nodes list to removed during macro nodes expansion. init_flags(Flag_is_macro); + init_class_id(Class_Opaque1); C->add_macro_node(this); } Node* original_loop_limit() { return req()==3 ? in(2) : NULL; } @@ -53,6 +55,21 @@ class Opaque1Node : public Node { virtual Node* Identity(PhaseGVN* phase); }; +// Opaque nodes specific to range check elimination handling +class OpaqueLoopInitNode : public Opaque1Node { + public: + OpaqueLoopInitNode(Compile* C, Node *n) : Opaque1Node(C, n) { + } + virtual int Opcode() const; +}; + +class OpaqueLoopStrideNode : public Opaque1Node { + public: + OpaqueLoopStrideNode(Compile* C, Node *n) : Opaque1Node(C, n) { + } + virtual int Opcode() const; +}; + //------------------------------Opaque2Node------------------------------------ // A node to prevent unwanted optimizations. Allows constant folding. Stops // value-numbering, most Ideal calls or Identity functions. This Node is diff --git a/src/hotspot/share/runtime/vmStructs.cpp b/src/hotspot/share/runtime/vmStructs.cpp index b3ae355a8a1..d95c730cdae 100644 --- a/src/hotspot/share/runtime/vmStructs.cpp +++ b/src/hotspot/share/runtime/vmStructs.cpp @@ -920,7 +920,7 @@ typedef HashtableEntry KlassHashtableEntry; c2_nonstatic_field(Node, _outcnt, node_idx_t) \ c2_nonstatic_field(Node, _outmax, node_idx_t) \ c2_nonstatic_field(Node, _idx, const node_idx_t) \ - c2_nonstatic_field(Node, _class_id, jushort) \ + c2_nonstatic_field(Node, _class_id, juint) \ c2_nonstatic_field(Node, _flags, jushort) \ \ c2_nonstatic_field(Compile, _root, RootNode*) \ diff --git a/test/hotspot/jtreg/compiler/loopopts/TestRCEAfterUnrolling.java b/test/hotspot/jtreg/compiler/loopopts/TestRCEAfterUnrolling.java new file mode 100644 index 00000000000..95a037a4560 --- /dev/null +++ b/test/hotspot/jtreg/compiler/loopopts/TestRCEAfterUnrolling.java @@ -0,0 +1,79 @@ +/* + * Copyright (c) 2020, 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 + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @bug 8229495 + * @summary SIGILL in C2 generated OSR compilation. + * + * @run main/othervm -Xcomp -XX:-TieredCompilation -XX:CompileOnly=TestRCEAfterUnrolling::test TestRCEAfterUnrolling + * + */ + +public class TestRCEAfterUnrolling { + + public static int iFld = 0; + public static short sFld = 1; + + public static void main(String[] strArr) { + test(); + } + + public static int test() { + int x = 11; + int y = 0; + int j = 0; + int iArr[] = new int[400]; + + init(iArr); + + for (int i = 0; i < 2; i++) { + doNothing(); + for (j = 10; j > 1; j -= 2) { + sFld += (short)j; + iArr = iArr; + y += (j * 3); + x = (iArr[j - 1]/ x); + x = sFld; + } + int k = 1; + while (++k < 8) { + iFld += x; + } + } + return Float.floatToIntBits(654) + x + j + y; + } + + // Inlined + public static void doNothing() { + } + + // Inlined + public static void init(int[] a) { + for (int j = 0; j < a.length; j++) { + a[j] = 0; + } + } +} + + From a640835c62c6275a2e6876cb0bb8efd48c5144bb Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Wed, 15 Jul 2020 09:22:29 -0300 Subject: [PATCH 02/13] 8249258: java/util/StringJoiner/StringJoinerTest.java failed due to OOM Reviewed-by: dcubed, rriggs --- .../util/StringJoiner/StringJoinerTest.java | 21 +++++++------------ 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/test/jdk/java/util/StringJoiner/StringJoinerTest.java b/test/jdk/java/util/StringJoiner/StringJoinerTest.java index cbc057ad3d1..918823d23e9 100644 --- a/test/jdk/java/util/StringJoiner/StringJoinerTest.java +++ b/test/jdk/java/util/StringJoiner/StringJoinerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 2020, 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 @@ -22,7 +22,7 @@ */ /** * @test - * @bug 5015163 7172553 + * @bug 5015163 7172553 8249258 * @summary tests StringJoinerTest * @modules java.base/jdk.internal.util * @requires os.maxMemory > 4G @@ -49,6 +49,7 @@ public class StringJoinerTest { private static final String FOUR = "Four"; private static final String FIVE = "Five"; private static final String DASH = "-"; + private static final String MAX_STRING = "*".repeat(MAX_ARRAY_LENGTH); public void addAddAll() { StringJoiner sj = new StringJoiner(DASH, "{", "}"); @@ -327,10 +328,8 @@ public class StringJoinerTest { } public void OOM1() { - String maxString = "*".repeat(MAX_ARRAY_LENGTH); - try { - new StringJoiner(maxString, maxString, maxString).toString(); + new StringJoiner(MAX_STRING, MAX_STRING, MAX_STRING).toString(); fail("Should have thrown OutOfMemoryError"); } catch (OutOfMemoryError ex) { // okay @@ -338,10 +337,8 @@ public class StringJoinerTest { } public void OOM2() { - String maxString = "*".repeat(MAX_ARRAY_LENGTH); - try { - new StringJoiner(maxString, maxString, "").toString(); + new StringJoiner(MAX_STRING, MAX_STRING, "").toString(); fail("Should have thrown OutOfMemoryError"); } catch (OutOfMemoryError ex) { // okay @@ -349,10 +346,8 @@ public class StringJoinerTest { } public void OOM3() { - String maxString = "*".repeat(MAX_ARRAY_LENGTH); - try { - new StringJoiner(maxString, "", maxString).toString(); + new StringJoiner(MAX_STRING, "", MAX_STRING).toString(); fail("Should have thrown OutOfMemoryError"); } catch (OutOfMemoryError ex) { // okay @@ -360,10 +355,8 @@ public class StringJoinerTest { } public void OOM4() { - String maxString = "*".repeat(MAX_ARRAY_LENGTH); - try { - new StringJoiner("", maxString, maxString).toString(); + new StringJoiner("", MAX_STRING, MAX_STRING).toString(); fail("Should have thrown OutOfMemoryError"); } catch (OutOfMemoryError ex) { // okay From 8906904591fc896c0b112116f05c598a9dd52181 Mon Sep 17 00:00:00 2001 From: Goetz Lindenmaier Date: Wed, 15 Jul 2020 18:47:47 +0200 Subject: [PATCH 03/13] 8248476: No helpful NullPointerException message after calling fillInStackTrace Reported by christoph.dreis@freenet.de Reviewed-by: coleenp, dholmes, mchung --- .../java/lang/NullPointerException.java | 31 ++++++- .../NullPointerExceptionTest.java | 87 +++++++++++++++++-- 2 files changed, 109 insertions(+), 9 deletions(-) diff --git a/src/java.base/share/classes/java/lang/NullPointerException.java b/src/java.base/share/classes/java/lang/NullPointerException.java index 9f01a62120d..ff1fd66e5ab 100644 --- a/src/java.base/share/classes/java/lang/NullPointerException.java +++ b/src/java.base/share/classes/java/lang/NullPointerException.java @@ -70,6 +70,27 @@ public class NullPointerException extends RuntimeException { super(s); } + // 0: no backtrace filled in, no message computed. + // 1: backtrace filled in, no message computed. + // 2: message computed + private transient int extendedMessageState; + private transient String extendedMessage; + + /** + * {@inheritDoc} + */ + public synchronized Throwable fillInStackTrace() { + // If the stack trace is changed the extended NPE algorithm + // will compute a wrong message. So compute it beforehand. + if (extendedMessageState == 0) { + extendedMessageState = 1; + } else if (extendedMessageState == 1) { + extendedMessage = getExtendedNPEMessage(); + extendedMessageState = 2; + } + return super.fillInStackTrace(); + } + /** * Returns the detail message string of this throwable. * @@ -89,7 +110,15 @@ public class NullPointerException extends RuntimeException { public String getMessage() { String message = super.getMessage(); if (message == null) { - return getExtendedNPEMessage(); + synchronized(this) { + if (extendedMessageState == 1) { + // Only the original stack trace was filled in. Message will + // compute correctly. + extendedMessage = getExtendedNPEMessage(); + extendedMessageState = 2; + } + return extendedMessage; + } } return message; } diff --git a/test/hotspot/jtreg/runtime/exceptionMsgs/NullPointerException/NullPointerExceptionTest.java b/test/hotspot/jtreg/runtime/exceptionMsgs/NullPointerException/NullPointerExceptionTest.java index fde2b92bca6..44a21eb7802 100644 --- a/test/hotspot/jtreg/runtime/exceptionMsgs/NullPointerException/NullPointerExceptionTest.java +++ b/test/hotspot/jtreg/runtime/exceptionMsgs/NullPointerException/NullPointerExceptionTest.java @@ -28,7 +28,7 @@ * @summary Test extended NullPointerException message for * classfiles generated with debug information. In this case the name * of the variable containing the array is printed. - * @bug 8218628 + * @bug 8218628 8248476 * @modules java.base/java.lang:open * java.base/jdk.internal.org.objectweb.asm * @library /test/lib @@ -41,7 +41,7 @@ * @summary Test extended NullPointerException message for class * files generated without debugging information. The message lists * detailed information about the entity that is null. - * @bug 8218628 + * @bug 8218628 8248476 * @modules java.base/java.lang:open * java.base/jdk.internal.org.objectweb.asm * @library /test/lib @@ -105,6 +105,9 @@ public class NullPointerExceptionTest { String obtainedMsg, String expectedMsg) { System.out.println("\nSource code:\n " + expression + "\n\nOutput:"); t.printStackTrace(System.out); + if (expectedMsg != null && obtainedMsg == null) { + Asserts.fail("Got null but expected this message: \"" + expectedMsg + "\"."); + } if (obtainedMsg != expectedMsg && // E.g. both are null. !obtainedMsg.equals(expectedMsg)) { System.out.println("expected msg: " + expectedMsg); @@ -1281,8 +1284,80 @@ public class NullPointerExceptionTest { String msg = new String("A pointless message"); Asserts.assertTrue(new NullPointerException(msg).getMessage() == msg); + // If fillInStackTrace is called a second time (first call is in + // the constructor), the information to compute the extended + // message is lost. Check we deal with this correctly. + + // On explicit construction no message should be computed, also + // after fillInStackTrace(). + Asserts.assertNull(new NullPointerException().fillInStackTrace().getMessage()); + Asserts.assertTrue(new NullPointerException(msg).fillInStackTrace().getMessage() == msg); + + // Similar if the exception is assigned to a local. + NullPointerException ex = new NullPointerException(); + Throwable t = ex.fillInStackTrace(); + Asserts.assertNull(t.getMessage()); + + ex = new NullPointerException(msg); + t = ex.fillInStackTrace(); + Asserts.assertTrue(t.getMessage() == msg); + + // An implicit exception should have the right message. + F f = null; + String expectedMessage = + "Cannot assign field \"i\" because " + + (hasDebugInfo ? "\"f\"" : "\"\"") + " is null"; + try { + f.i = 17; + } catch (NullPointerException e) { + checkMessage(e, "f.i = 17;", e.getMessage(), expectedMessage); + t = e.fillInStackTrace(); + } + checkMessage(t, "e.fillInStackTrace()", t.getMessage(), expectedMessage); + + // Make sure a new exception thrown while calling fillInStackTrace() + // gets the correct message. + ex = null; + try { + ex.fillInStackTrace(); + } catch (NullPointerException e) { + checkMessage(e, "ex.fillInStackTrace()", e.getMessage(), + "Cannot invoke \"java.lang.NullPointerException.fillInStackTrace()\" because " + + (hasDebugInfo ? "\"ex\"" : "\"\"") + " is null"); + } + + // setStackTrace does not affect computing the message. + // Message and stack trace won't match, though. + F f1 = null; + F f2 = null; + NullPointerException e1 = null; + NullPointerException e2 = null; + try { + f1.i = 18; + } catch (NullPointerException e) { + checkMessage(e, "f1.i = 18;", e.getMessage(), + "Cannot assign field \"i\" because " + + (hasDebugInfo ? "\"f1\"" : "\"\"") + " is null"); + e1 = e; + } + try { + f2.i = 19; + } catch (NullPointerException e) { + checkMessage(e, "f2.i = 19;", e.getMessage(), + "Cannot assign field \"i\" because " + + (hasDebugInfo ? "\"f2\"" : "\"\"") + " is null"); + e2 = e; + } + e1.setStackTrace(e2.getStackTrace()); + checkMessage(e1, "f1.i = 18;", e1.getMessage(), + "Cannot assign field \"i\" because " + + (hasDebugInfo ? "\"f1\"" : "\"\"") + " is null"); + checkMessage(e2, "f1.i = 18;", e2.getMessage(), + "Cannot assign field \"i\" because " + + (hasDebugInfo ? "\"f2\"" : "\"\"") + " is null"); + // If created via reflection, the message should not be generated. - Exception ex = NullPointerException.class.getDeclaredConstructor().newInstance(); + ex = NullPointerException.class.getDeclaredConstructor().newInstance(); Asserts.assertNull(ex.getMessage()); } @@ -1295,7 +1370,6 @@ public class NullPointerExceptionTest { } catch (NullPointerException e) { Asserts.assertNull(e.getMessage()); } - } // Test we get the same message calling npe.getMessage() twice. @@ -1314,10 +1388,7 @@ public class NullPointerExceptionTest { checkMessage(e, "null_o.hashCode()", msg1, expectedMsg); String msg2 = e.getMessage(); Asserts.assertTrue(msg1.equals(msg2)); - // It was decided that getMessage should generate the - // message anew on every call, so this does not hold. - //Asserts.assertTrue(msg1 == msg2); - Asserts.assertFalse(msg1 == msg2); + Asserts.assertTrue(msg1 == msg2); } } From 681d06d39bc533967df989d024e55cde1476816f Mon Sep 17 00:00:00 2001 From: Ekaterina Pavlova Date: Wed, 15 Jul 2020 10:26:48 -0700 Subject: [PATCH 04/13] 8242388: compiler/graalunit/CoreTest.java timed out Reviewed-by: kvn --- .../{CoreTest.java => Core01Test.java} | 2 +- .../jtreg/compiler/graalunit/Core02Test.java | 40 +++++++++++++++++++ .../jtreg/compiler/graalunit/TestPackages.txt | 3 +- 3 files changed, 43 insertions(+), 2 deletions(-) rename test/hotspot/jtreg/compiler/graalunit/{CoreTest.java => Core01Test.java} (93%) create mode 100644 test/hotspot/jtreg/compiler/graalunit/Core02Test.java diff --git a/test/hotspot/jtreg/compiler/graalunit/CoreTest.java b/test/hotspot/jtreg/compiler/graalunit/Core01Test.java similarity index 93% rename from test/hotspot/jtreg/compiler/graalunit/CoreTest.java rename to test/hotspot/jtreg/compiler/graalunit/Core01Test.java index df869c95811..fac3b021646 100644 --- a/test/hotspot/jtreg/compiler/graalunit/CoreTest.java +++ b/test/hotspot/jtreg/compiler/graalunit/Core01Test.java @@ -34,7 +34,7 @@ * * @run driver jdk.test.lib.FileInstaller ../../ProblemList-graal.txt ExcludeList.txt * - * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI compiler.graalunit.common.GraalUnitTestLauncher -prefix org.graalvm.compiler.core.test -exclude ExcludeList.txt -vmargs --add-opens=java.base/java.lang=ALL-UNNAMED + * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI compiler.graalunit.common.GraalUnitTestLauncher -prefix org.graalvm.compiler.core.test.[a-cA-C] -exclude ExcludeList.txt -vmargs --add-opens=java.base/java.lang=ALL-UNNAMED */ /* DO NOT MODIFY THIS FILE. GENERATED BY generateTests.sh */ diff --git a/test/hotspot/jtreg/compiler/graalunit/Core02Test.java b/test/hotspot/jtreg/compiler/graalunit/Core02Test.java new file mode 100644 index 00000000000..7cfdebcda74 --- /dev/null +++ b/test/hotspot/jtreg/compiler/graalunit/Core02Test.java @@ -0,0 +1,40 @@ +/* + * Copyright (c) 2018, 2020, 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 + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @summary + * @requires vm.jvmci + * @requires !vm.graal.enabled + * @modules jdk.internal.vm.compiler + * + * @library /test/lib /compiler/graalunit / + * + * @build compiler.graalunit.common.GraalUnitTestLauncher + * + * @run driver jdk.test.lib.FileInstaller ../../ProblemList-graal.txt ExcludeList.txt + * + * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI compiler.graalunit.common.GraalUnitTestLauncher -prefix org.graalvm.compiler.core.test.[d-zD-Z] -exclude ExcludeList.txt -vmargs --add-opens=java.base/java.lang=ALL-UNNAMED + */ + +/* DO NOT MODIFY THIS FILE. GENERATED BY generateTests.sh */ diff --git a/test/hotspot/jtreg/compiler/graalunit/TestPackages.txt b/test/hotspot/jtreg/compiler/graalunit/TestPackages.txt index 141728218d9..f7ecd1e8420 100644 --- a/test/hotspot/jtreg/compiler/graalunit/TestPackages.txt +++ b/test/hotspot/jtreg/compiler/graalunit/TestPackages.txt @@ -3,7 +3,8 @@ ApiDirectives org.graalvm.compiler.api.directives.test Api org.graalvm.compiler.api.test AsmAarch64 org.graalvm.compiler.asm.aarch64.test AsmAmd64 org.graalvm.compiler.asm.amd64.test -Core org.graalvm.compiler.core.test --requires !vm.graal.enabled --vmargs --add-opens=java.base/java.lang=ALL-UNNAMED +Core01 org.graalvm.compiler.core.test.[a-cA-C] --requires !vm.graal.enabled --vmargs --add-opens=java.base/java.lang=ALL-UNNAMED +Core02 org.graalvm.compiler.core.test.[d-zD-Z] --requires !vm.graal.enabled --vmargs --add-opens=java.base/java.lang=ALL-UNNAMED EA org.graalvm.compiler.core.test.ea CoreAmd64 org.graalvm.compiler.core.amd64.test CoreAarch64 org.graalvm.compiler.core.aarch64.test From be2a92d8c7365c7aa79a43b53139e2f57fb15390 Mon Sep 17 00:00:00 2001 From: Pankaj Bansal Date: Wed, 15 Jul 2020 23:40:18 +0530 Subject: [PATCH 05/13] 8249251: [dark_mode ubuntu 20.04] The selected menu is not highlighted in GTKLookAndFeel Reviewed-by: serb, prr --- .../sun/java/swing/plaf/gtk/GTKPainter.java | 100 ++------- .../swing/JMenu/JMenuSelectedColorTest.java | 206 ++++++++++++++++++ 2 files changed, 228 insertions(+), 78 deletions(-) create mode 100644 test/jdk/javax/swing/JMenu/JMenuSelectedColorTest.java diff --git a/src/java.desktop/share/classes/com/sun/java/swing/plaf/gtk/GTKPainter.java b/src/java.desktop/share/classes/com/sun/java/swing/plaf/gtk/GTKPainter.java index 37dd3ec7772..fb3e005b094 100644 --- a/src/java.desktop/share/classes/com/sun/java/swing/plaf/gtk/GTKPainter.java +++ b/src/java.desktop/share/classes/com/sun/java/swing/plaf/gtk/GTKPainter.java @@ -185,6 +185,21 @@ class GTKPainter extends SynthPainter { } } + //This is workaround used to draw the highlight + // when the MENU or MenuItem is selected on some platforms + //This should be properly fixed by reading color from css + private void paintComponentBackground(SynthContext context, + Graphics g, int x, int y, + int w, int h) { + GTKStyle style = (GTKStyle) context.getStyle(); + Color highlightColor = + style.getGTKColor(GTKEngine.WidgetType.TEXT_AREA.ordinal(), + GTKLookAndFeel.synthStateToGTKStateType(SynthConstants.SELECTED).ordinal(), + ColorType.BACKGROUND.getID()); + g.setColor(highlightColor); + g.fillRect(x, y, w, h); + } + // // RADIO_BUTTON_MENU_ITEM // @@ -196,6 +211,10 @@ class GTKPainter extends SynthPainter { int gtkState = GTKLookAndFeel.synthStateToGTKState( id, context.getComponentState()); if (gtkState == SynthConstants.MOUSE_OVER) { + if (GTKLookAndFeel.is3()) { + paintComponentBackground(context, g, x, y, w, h); + return; + } synchronized (UNIXToolkit.GTK_LOCK) { if (! ENGINE.paintCachedImage(g, x, y, w, h, id)) { ShadowType shadow = (GTKLookAndFeel.is2_2() ? @@ -535,34 +554,6 @@ class GTKPainter extends SynthPainter { } } - private int getBrightness(Color c) { - return Math.max(c.getRed(), Math.max(c.getGreen(), c.getBlue())); - } - - private int getMaxColorDiff(Color c1, Color c2) { - return Math.max(Math.abs(c1.getRed() - c2.getRed()), - Math.max(Math.abs(c1.getGreen() - c2.getGreen()), - Math.abs(c1.getBlue() - c2.getBlue()))); - } - - private int scaleColorComponent(int color, double scaleFactor) { - return (int)(color + color * scaleFactor); - } - private Color deriveColor(Color originalColor, int originalBrightness, - int targetBrightness) { - int r, g, b; - if (originalBrightness == 0) { - r = g = b = targetBrightness; - } else { - double scaleFactor = (targetBrightness - originalBrightness) - / originalBrightness ; - r = scaleColorComponent(originalColor.getRed(), scaleFactor); - g = scaleColorComponent(originalColor.getGreen(), scaleFactor); - b = scaleColorComponent(originalColor.getBlue(), scaleFactor); - } - return new Color(r, g, b); - } - // // MENU // @@ -579,56 +570,9 @@ class GTKPainter extends SynthPainter { int gtkState = GTKLookAndFeel.synthStateToGTKState( context.getRegion(), context.getComponentState()); if (gtkState == SynthConstants.MOUSE_OVER) { - if (GTKLookAndFeel.is3() && context.getRegion() == Region.MENU) { - GTKStyle style = (GTKStyle)context.getStyle(); - Color highlightColor = style.getGTKColor( - GTKEngine.WidgetType.MENU_ITEM.ordinal(), - gtkState, ColorType.BACKGROUND.getID()); - Color backgroundColor = style.getGTKColor( - GTKEngine.WidgetType.MENU_BAR.ordinal(), - SynthConstants.ENABLED, ColorType.BACKGROUND.getID()); - - int minBrightness = 0, maxBrightness = 255; - int minBrightnessDifference = 100; - int actualBrightnessDifference = - getMaxColorDiff(highlightColor, backgroundColor); - if (actualBrightnessDifference < minBrightnessDifference) { - int highlightBrightness = - getBrightness(highlightColor); - int backgroundBrightness = - getBrightness(backgroundColor); - int originalHighlightBrightness = - highlightBrightness; - if (highlightBrightness >= backgroundBrightness) { - if (backgroundBrightness + minBrightnessDifference <= - maxBrightness) { - highlightBrightness = - backgroundBrightness + - minBrightnessDifference; - } else { - highlightBrightness = - backgroundBrightness - - minBrightnessDifference; - } - } else { - if (backgroundBrightness - minBrightnessDifference >= - minBrightness) { - highlightBrightness = - backgroundBrightness - - minBrightnessDifference; - } else { - highlightBrightness = - backgroundBrightness + - minBrightnessDifference; - } - } - - g.setColor(deriveColor(highlightColor, - originalHighlightBrightness, - highlightBrightness)); - g.fillRect(x, y, w, h); - return; - } + if (GTKLookAndFeel.is3()) { + paintComponentBackground(context, g, x, y, w, h); + return; } Region id = Region.MENU_ITEM; synchronized (UNIXToolkit.GTK_LOCK) { diff --git a/test/jdk/javax/swing/JMenu/JMenuSelectedColorTest.java b/test/jdk/javax/swing/JMenu/JMenuSelectedColorTest.java new file mode 100644 index 00000000000..59012d5297d --- /dev/null +++ b/test/jdk/javax/swing/JMenu/JMenuSelectedColorTest.java @@ -0,0 +1,206 @@ +/* + * Copyright (c) 2020, 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 + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + * @test + * @requires (os.family == "linux") + * @key headful + * @bug 8248637 + * @summary Tests selected JMenu and JMenuitem is properly highlighted in GTKL&F + * with gtk3 version + * @run main/othervm -Djdk.gtk.version=3 JMenuSelectedColorTest + */ + +import javax.swing.JFrame; +import javax.swing.JMenu; +import javax.swing.JMenuBar; +import javax.swing.JMenuItem; +import javax.swing.JPanel; +import javax.swing.SwingUtilities; +import javax.swing.UIManager; +import javax.swing.UnsupportedLookAndFeelException; +import java.awt.BorderLayout; +import java.awt.Color; +import java.awt.Component; +import java.awt.FlowLayout; +import java.awt.Point; +import java.awt.Rectangle; +import java.awt.Robot; +import java.awt.event.InputEvent; + +public class JMenuSelectedColorTest { + private static JFrame frame; + private static JMenu menu; + private static JMenuItem menuitem; + private static Point point; + private static Rectangle rect; + private static Robot robot; + private static final String GTK_LAF_CLASS = "GTKLookAndFeel"; + private static int minColorDifference = 100; + + private static void blockTillDisplayed(Component comp) { + Point p = null; + while (p == null) { + try { + p = comp.getLocationOnScreen(); + } catch (IllegalStateException e) { + try { + Thread.sleep(500); + } catch (InterruptedException ie) { + } + } + } + } + + private static int getMaxColorDiff(Color c1, Color c2) { + return Math.max(Math.abs(c1.getRed() - c2.getRed()), + Math.max(Math.abs(c1.getGreen() - c2.getGreen()), + Math.abs(c1.getBlue() - c2.getBlue()))); + } + + public static void main(String[] args) throws Exception { + if (!System.getProperty("os.name").startsWith("Linux")) { + System.out.println("This test is meant for Linux platform only"); + return; + } + + for (UIManager.LookAndFeelInfo lookAndFeelInfo : + UIManager.getInstalledLookAndFeels()) { + if (lookAndFeelInfo.getClassName().contains(GTK_LAF_CLASS)) { + try { + UIManager.setLookAndFeel(lookAndFeelInfo.getClassName()); + } catch (final UnsupportedLookAndFeelException ignored) { + System.out.println("GTK L&F could not be set, so this " + + "test can not be run in this scenario "); + return; + } + } + } + + robot = new Robot(); + robot.setAutoDelay(100); + + try { + SwingUtilities.invokeAndWait(new Runnable() { + public void run() { + menu = new JMenu(" ") ; + menuitem = new JMenuItem(" "); + menu.add(menuitem); + + JPanel panel = new JPanel(); + panel.setLayout(new BorderLayout()); + + JMenuBar menuBar = new JMenuBar(); + JPanel menuPanel = new JPanel(); + + menuPanel.setLayout(new FlowLayout()); + + menuBar.add(menu); + menuPanel.add(menuBar); + panel.add(menuPanel, BorderLayout.CENTER); + frame = new JFrame("JMenuSelectedColor"); + frame.add(panel); + frame.setSize(200, 200); + frame.setAlwaysOnTop(true); + frame.setLocationRelativeTo(null); + frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); + frame.setVisible(true); + } + }); + + robot.waitForIdle(); + robot.delay(500); + + blockTillDisplayed(menu); + SwingUtilities.invokeAndWait(() -> { + point = menu.getLocationOnScreen(); + rect = menu.getBounds(); + }); + robot.waitForIdle(); + robot.delay(500); + + Color backgroundColor = robot + .getPixelColor(point.x+rect.width/2, point.y+rect.height/2); + robot.waitForIdle(); + robot.delay(500); + + menu.setSelected(true); + robot.waitForIdle(); + robot.delay(500); + + Color highlightColor = robot + .getPixelColor(point.x+rect.width/2, point.y+rect.height/2); + robot.waitForIdle(); + robot.delay(500); + + int actualColorDifference = getMaxColorDiff(backgroundColor, highlightColor); + if (actualColorDifference < minColorDifference) { + throw new RuntimeException("The expected highlight color for " + + "Menu was not found"); + } + + robot.mouseMove(point.x + rect.width / 2, + point.y + rect.height / 2); + robot.waitForIdle(); + robot.delay(500); + + robot.mousePress(InputEvent.BUTTON1_DOWN_MASK); + robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK); + robot.waitForIdle(); + robot.delay(500); + + blockTillDisplayed(menuitem); + SwingUtilities.invokeAndWait(() -> { + point = menuitem.getLocationOnScreen(); + rect = menuitem.getBounds(); + }); + robot.waitForIdle(); + robot.delay(500); + + backgroundColor = robot + .getPixelColor(point.x+rect.width/2, point.y+rect.height/2); + robot.waitForIdle(); + robot.delay(500); + + robot.mouseMove(point.x + rect.width / 2, + point.y + rect.height / 2); + robot.waitForIdle(); + robot.delay(500); + + highlightColor = robot + .getPixelColor(point.x+rect.width/2, point.y+rect.height/2); + robot.waitForIdle(); + robot.delay(500); + + actualColorDifference = getMaxColorDiff(backgroundColor, highlightColor); + if (actualColorDifference < minColorDifference) { + throw new RuntimeException("The expected highlight color for " + + "Menuitem was not found"); + } + } finally { + if (frame != null) { + SwingUtilities.invokeAndWait(frame::dispose); + } + } + } +} From 1b5391264a698718f7973ee59ef61c159cda3e47 Mon Sep 17 00:00:00 2001 From: Igor Ignatyev Date: Wed, 15 Jul 2020 11:31:35 -0700 Subject: [PATCH 06/13] 8249039: clean up FileInstaller $test.src $cwd in vmTestbase_nsk_aod tests Reviewed-by: dholmes, sspitsyn --- .../AttachProvider01/AttachProvider01.java | 3 +-- .../AttachProvider02/AttachProvider02.java | 3 +-- .../VirtualMachine01/VirtualMachine01.java | 3 +-- .../VirtualMachine02/VirtualMachine02.java | 3 +-- .../VirtualMachine03/VirtualMachine03.java | 3 +-- .../VirtualMachine04/VirtualMachine04.java | 3 +-- .../VirtualMachine05/VirtualMachine05.java | 3 +-- .../VirtualMachine06/VirtualMachine06.java | 19 +++++++++++++------ .../VirtualMachine07/VirtualMachine07.java | 3 +-- .../VirtualMachine08/TestDescription.java | 3 +-- .../VirtualMachine09/VirtualMachine09.java | 3 +-- .../VirtualMachine10/TestDescription.java | 3 +-- .../VirtualMachineDescriptor01.java | 3 +-- 13 files changed, 25 insertions(+), 30 deletions(-) diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/AttachProvider/AttachProvider01/AttachProvider01.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/AttachProvider/AttachProvider01/AttachProvider01.java index 1907fe21aa1..e68fb16def2 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/AttachProvider/AttachProvider01/AttachProvider01.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/AttachProvider/AttachProvider01/AttachProvider01.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -35,7 +35,6 @@ * * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.aod.AttachProvider.AttachProvider01.AttachProvider01 * nsk.share.aod.DummyTargetApplication * @run main/othervm -XX:+UsePerfData PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/AttachProvider/AttachProvider02/AttachProvider02.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/AttachProvider/AttachProvider02/AttachProvider02.java index 7880e3906c9..45a0642b3be 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/AttachProvider/AttachProvider02/AttachProvider02.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/AttachProvider/AttachProvider02/AttachProvider02.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.aod.AttachProvider.AttachProvider02.AttachProvider02 * nsk.share.aod.DummyTargetApplication * @run main/othervm -Djdk.attach.allowAttachSelf -XX:+UsePerfData diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine01/VirtualMachine01.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine01/VirtualMachine01.java index 336be5f42c2..dc98240584d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine01/VirtualMachine01.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine01/VirtualMachine01.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.aod.VirtualMachine.VirtualMachine01.VirtualMachine01 * nsk.share.aod.DummyTargetApplication * @run main/othervm -XX:+UsePerfData PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine02/VirtualMachine02.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine02/VirtualMachine02.java index 09c7c6b050d..8116ef96eed 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine02/VirtualMachine02.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine02/VirtualMachine02.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.aod.VirtualMachine.VirtualMachine02.VirtualMachine02 * nsk.share.aod.DummyTargetApplication * @run main/othervm -Djdk.attach.allowAttachSelf -XX:+UsePerfData diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine03/VirtualMachine03.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine03/VirtualMachine03.java index 367b8b29159..7c9414613a3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine03/VirtualMachine03.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine03/VirtualMachine03.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -34,7 +34,6 @@ * * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.aod.VirtualMachine.VirtualMachine03.VirtualMachine03 * nsk.share.aod.DummyTargetApplication * @run main/othervm -Djdk.attach.allowAttachSelf -XX:+UsePerfData diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine04/VirtualMachine04.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine04/VirtualMachine04.java index 7a5b49d18e9..7fe22a069d0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine04/VirtualMachine04.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine04/VirtualMachine04.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.aod.VirtualMachine.VirtualMachine04.VirtualMachine04 * nsk.aod.VirtualMachine.VirtualMachine04.VM04Target * @run main/othervm -XX:+UsePerfData PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine05/VirtualMachine05.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine05/VirtualMachine05.java index b8601267975..ae516c3f8b7 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine05/VirtualMachine05.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine05/VirtualMachine05.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -35,7 +35,6 @@ * * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.aod.VirtualMachine.VirtualMachine05.VirtualMachine05 * nsk.share.aod.DummyTargetApplication * @run main/othervm -XX:+UsePerfData PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine06/VirtualMachine06.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine06/VirtualMachine06.java index f5aab3414bd..d839fbe8524 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine06/VirtualMachine06.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine06/VirtualMachine06.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -40,7 +40,6 @@ * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib * - * @run driver jdk.test.lib.FileInstaller . . * * @comment compile VM06Agent0[0-3].java to current directory * @build nsk.aod.VirtualMachine.VirtualMachine06.VM06Agent00 @@ -56,16 +55,24 @@ * @comment create VM06Agent0[0-3].jar in current directory * @build ExecDriver * @run driver PropertyResolvingWrapper ExecDriver --cmd - * ${test.jdk}/bin/jar -cmf VM06Agent00.mf VM06Agent00.jar + * ${test.jdk}/bin/jar + * -cmf ${test.src}/VM06Agent00.mf + * VM06Agent00.jar * nsk/aod/VirtualMachine/VirtualMachine06/VM06Agent00.class * @run driver PropertyResolvingWrapper ExecDriver --cmd - * ${test.jdk}/bin/jar -cmf VM06Agent01.mf VM06Agent01.jar + * ${test.jdk}/bin/jar + * -cmf ${test.src}/VM06Agent01.mf + * VM06Agent01.jar * nsk/aod/VirtualMachine/VirtualMachine06/VM06Agent01.class * @run driver PropertyResolvingWrapper ExecDriver --cmd - * ${test.jdk}/bin/jar -cmf VM06Agent02.mf VM06Agent02.jar + * ${test.jdk}/bin/jar + * -cmf ${test.src}/VM06Agent02.mf + * VM06Agent02.jar * nsk/aod/VirtualMachine/VirtualMachine06/VM06Agent02.class * @run driver PropertyResolvingWrapper ExecDriver --cmd - * ${test.jdk}/bin/jar -cmf VM06Agent03.mf VM06Agent03.jar + * ${test.jdk}/bin/jar + * -cmf ${test.src}/VM06Agent03.mf + * VM06Agent03.jar * nsk/aod/VirtualMachine/VirtualMachine06/VM06Agent03.class * * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine07/VirtualMachine07.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine07/VirtualMachine07.java index 41d31f780bd..bb2084760e1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine07/VirtualMachine07.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine07/VirtualMachine07.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.aod.VirtualMachine.VirtualMachine07.VirtualMachine07 * nsk.share.aod.TargetApplicationWaitingAgents * @run main/othervm/native -XX:+UsePerfData PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine08/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine08/TestDescription.java index 726d1920480..d0c629b3163 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine08/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine08/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.aod.VirtualMachine.VirtualMachine07.VirtualMachine07 * nsk.share.aod.TargetApplicationWaitingAgents * @run main/othervm/native -XX:+UsePerfData PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine09/VirtualMachine09.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine09/VirtualMachine09.java index 89025d9bf93..5488e4c79d1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine09/VirtualMachine09.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine09/VirtualMachine09.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.aod.VirtualMachine.VirtualMachine09.VirtualMachine09 * nsk.aod.VirtualMachine.VirtualMachine09.VM09Target * @run main/othervm/native -XX:+UsePerfData PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine10/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine10/TestDescription.java index 008b4e5d620..e07fed3dd6c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine10/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachine/VirtualMachine10/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.aod.VirtualMachine.VirtualMachine09.VirtualMachine09 * nsk.aod.VirtualMachine.VirtualMachine09.VM09Target * @run main/othervm/native -XX:+UsePerfData PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachineDescriptor/VirtualMachineDescriptor01/VirtualMachineDescriptor01.java b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachineDescriptor/VirtualMachineDescriptor01/VirtualMachineDescriptor01.java index af2c4e883db..8ab53fa931b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachineDescriptor/VirtualMachineDescriptor01/VirtualMachineDescriptor01.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/aod/VirtualMachineDescriptor/VirtualMachineDescriptor01/VirtualMachineDescriptor01.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase /test/hotspot/jtreg/vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.aod.VirtualMachineDescriptor.VirtualMachineDescriptor01.VirtualMachineDescriptor01 * nsk.share.aod.DummyTargetApplication * @run main/othervm -XX:+UsePerfData PropertyResolvingWrapper From b27e717c56ede7d6c408e7d12d1045d29cd5f610 Mon Sep 17 00:00:00 2001 From: Igor Ignatyev Date: Wed, 15 Jul 2020 11:33:43 -0700 Subject: [PATCH 07/13] 8249034: clean up FileInstaller $test.src $cwd in vmTestbase_nsk_jvmti tests Reviewed-by: sspitsyn --- .../jvmti/AddCapabilities/addcaps001/TestDescription.java | 3 +-- .../jvmti/AddCapabilities/addcaps002/TestDescription.java | 3 +-- .../jvmti/AddCapabilities/addcaps003/TestDescription.java | 3 +-- .../bootclssearch001/TestDescription.java | 3 +-- .../bootclssearch002/TestDescription.java | 3 +-- .../bootclssearch003/TestDescription.java | 3 +-- .../bootclssearch004/TestDescription.java | 3 +-- .../bootclssearch007/TestDescription.java | 3 +-- .../bootclssearch008/TestDescription.java | 3 +-- .../bootclssearch009/TestDescription.java | 3 +-- .../bootclssearch010/TestDescription.java | 3 +-- .../systemclssearch001/TestDescription.java | 3 +-- .../systemclssearch002/TestDescription.java | 3 +-- .../systemclssearch003/TestDescription.java | 3 +-- .../systemclssearch004/TestDescription.java | 3 +-- .../systemclssearch005/TestDescription.java | 3 +-- .../systemclssearch006/TestDescription.java | 3 +-- .../jvmti/Agent_OnLoad/agentonload001/TestDescription.java | 3 +-- .../jvmti/Agent_OnLoad/agentonload002/TestDescription.java | 3 +-- .../nsk/jvmti/Agent_OnLoad/agentonload003/TestDriver.java | 3 +-- .../jvmti/Agent_OnUnload/agentonunload001/TestDriver.java | 3 +-- .../nsk/jvmti/Allocate/alloc001/TestDescription.java | 3 +-- .../vmTestbase/nsk/jvmti/Allocate/alloc001/alloc001.sh | 4 +++- .../AttachOnDemand/attach001/attach001TestRunner.java | 3 +-- .../jvmti/AttachOnDemand/attach002/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach002a/TestDescription.java | 7 +++---- .../jvmti/AttachOnDemand/attach003/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach004/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach008/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach009/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach010/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach011/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach012/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach013/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach014/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach015/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach020/TestDescription.java | 1 - .../jvmti/AttachOnDemand/attach021/TestDescription.java | 1 - .../jvmti/AttachOnDemand/attach022/TestDescription.java | 1 - .../jvmti/AttachOnDemand/attach024/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach030/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach031/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach034/TestDescription.java | 3 +-- .../AttachOnDemand/attach036/attach036TestRunner.java | 3 +-- .../jvmti/AttachOnDemand/attach037/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach038/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach039/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach040/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach041/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach042/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach043/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach045/TestDescription.java | 3 +-- .../jvmti/AttachOnDemand/attach046/TestDescription.java | 3 +-- .../AttachOnDemand/attach050/attach050TestRunner.java | 3 +-- .../jvmti/Breakpoint/breakpoint001/TestDescription.java | 3 +-- .../ClassFileLoadHook/classfloadhk001/TestDescription.java | 3 +-- .../ClassFileLoadHook/classfloadhk002/TestDescription.java | 3 +-- .../ClassFileLoadHook/classfloadhk003/TestDescription.java | 3 +-- .../ClassFileLoadHook/classfloadhk004/TestDescription.java | 3 +-- .../ClassFileLoadHook/classfloadhk005/TestDescription.java | 3 +-- .../ClassFileLoadHook/classfloadhk006/TestDescription.java | 3 +-- .../ClassFileLoadHook/classfloadhk007/TestDescription.java | 3 +-- .../ClassFileLoadHook/classfloadhk008/TestDescription.java | 3 +-- .../ClassFileLoadHook/classfloadhk009/TestDescription.java | 3 +-- .../nsk/jvmti/ClassLoad/classload001/TestDescription.java | 3 +-- .../jvmti/ClassPrepare/classprep001/TestDescription.java | 3 +-- .../jvmti/ClearBreakpoint/clrbrk001/TestDescription.java | 3 +-- .../jvmti/ClearBreakpoint/clrbrk002/TestDescription.java | 3 +-- .../jvmti/ClearBreakpoint/clrbrk005/TestDescription.java | 3 +-- .../ClearFieldAccessWatch/clrfldw001/TestDescription.java | 3 +-- .../ClearFieldAccessWatch/clrfldw002/TestDescription.java | 3 +-- .../clrfmodw001/TestDescription.java | 3 +-- .../clrfmodw002/TestDescription.java | 3 +-- .../compmethload001/TestDescription.java | 3 +-- .../compmethunload001/TestDescription.java | 1 - .../CreateRawMonitor/crrawmon001/TestDescription.java | 3 +-- .../CreateRawMonitor/crrawmon002/TestDescription.java | 3 +-- .../DataDumpRequest/datadumpreq001/TestDescription.java | 3 +-- .../nsk/jvmti/Deallocate/dealloc001/TestDescription.java | 3 +-- .../DestroyRawMonitor/drrawmon001/TestDescription.java | 3 +-- .../DestroyRawMonitor/drrawmon003/TestDescription.java | 3 +-- .../DestroyRawMonitor/drrawmon004/TestDescription.java | 3 +-- .../DisposeEnvironment/disposeenv001/TestDescription.java | 3 +-- .../DisposeEnvironment/disposeenv002/TestDescription.java | 3 +-- .../DynamicCodeGenerated/dyncodgen001/TestDescription.java | 3 +-- .../nsk/jvmti/Exception/exception001/TestDescription.java | 3 +-- .../jvmti/ExceptionCatch/excatch001/TestDescription.java | 3 +-- .../nsk/jvmti/FieldAccess/fieldacc001/TestDescription.java | 3 +-- .../nsk/jvmti/FieldAccess/fieldacc002/TestDescription.java | 3 +-- .../nsk/jvmti/FieldAccess/fieldacc003/TestDescription.java | 3 +-- .../nsk/jvmti/FieldAccess/fieldacc004/TestDescription.java | 3 +-- .../FieldModification/fieldmod001/TestDescription.java | 3 +-- .../FieldModification/fieldmod002/TestDescription.java | 3 +-- .../ForceEarlyReturn001/TestDescription.java | 3 +-- .../ForceEarlyReturn002/TestDescription.java | 3 +-- .../ForceGarbageCollection/forcegc001/TestDescription.java | 3 +-- .../ForceGarbageCollection/forcegc002/TestDescription.java | 3 +-- .../nsk/jvmti/FramePop/framepop001/TestDescription.java | 3 +-- .../nsk/jvmti/FramePop/framepop002/TestDescription.java | 3 +-- .../gcfinish001/TestDescription.java | 1 - .../GarbageCollectionStart/gcstart001/TestDescription.java | 1 - .../GarbageCollectionStart/gcstart002/TestDescription.java | 1 - .../jvmti/GenerateEvents/genevents001/TestDescription.java | 3 +-- .../nsk/jvmti/GetAllThreads/allthr001/TestDescription.java | 3 +-- .../nsk/jvmti/GetAllThreads/allthr002/TestDescription.java | 3 +-- .../jvmti/GetArgumentsSize/argsize001/TestDescription.java | 3 +-- .../jvmti/GetArgumentsSize/argsize002/TestDescription.java | 3 +-- .../getavailproc001/TestDescription.java | 3 +-- .../jvmti/GetBytecodes/bytecodes001/TestDescription.java | 3 +-- .../jvmti/GetBytecodes/bytecodes002/TestDescription.java | 3 +-- .../jvmti/GetBytecodes/bytecodes003/TestDescription.java | 3 +-- .../jvmti/GetCapabilities/getcaps001/TestDescription.java | 3 +-- .../jvmti/GetCapabilities/getcaps002/TestDescription.java | 3 +-- .../jvmti/GetClassFields/getclfld005/TestDescription.java | 3 +-- .../jvmti/GetClassFields/getclfld006/TestDescription.java | 3 +-- .../jvmti/GetClassFields/getclfld007/TestDescription.java | 3 +-- .../jvmti/GetClassLoader/getclsldr001/TestDescription.java | 3 +-- .../jvmti/GetClassLoader/getclsldr002/TestDescription.java | 3 +-- .../jvmti/GetClassLoader/getclsldr003/TestDescription.java | 3 +-- .../clsldrclss001/TestDescription.java | 3 +-- .../clsldrclss002/TestDescription.java | 3 +-- .../GetClassMethods/getclmthd005/TestDescription.java | 3 +-- .../GetClassMethods/getclmthd006/TestDescription.java | 3 +-- .../GetClassMethods/getclmthd007/TestDescription.java | 3 +-- .../GetClassModifiers/getclmdf004/TestDescription.java | 3 +-- .../GetClassModifiers/getclmdf005/TestDescription.java | 3 +-- .../GetClassModifiers/getclmdf006/TestDescription.java | 3 +-- .../GetClassModifiers/getclmdf007/TestDescription.java | 3 +-- .../GetClassSignature/getclsig004/TestDescription.java | 3 +-- .../GetClassSignature/getclsig005/TestDescription.java | 3 +-- .../GetClassSignature/getclsig006/TestDescription.java | 3 +-- .../jvmti/GetClassStatus/getclstat005/TestDescription.java | 3 +-- .../jvmti/GetClassStatus/getclstat006/TestDescription.java | 3 +-- .../jvmti/GetClassStatus/getclstat007/TestDescription.java | 3 +-- .../contmon001/TestDescription.java | 3 +-- .../contmon002/TestDescription.java | 3 +-- .../contmon003/TestDescription.java | 3 +-- .../curthrcputime001/TestDescription.java | 3 +-- .../curthrtimerinfo001/TestDescription.java | 3 +-- .../vmTestbase/nsk/jvmti/GetEnv/GetEnv001/GetEnv001.java | 3 +-- .../getenvstor001/TestDescription.java | 3 +-- .../jvmti/GetErrorName/geterrname001/TestDescription.java | 3 +-- .../jvmti/GetErrorName/geterrname002/TestDescription.java | 3 +-- .../GetExtensionEvents/extevents001/TestDescription.java | 3 +-- .../GetExtensionFunctions/extfuncs001/TestDescription.java | 3 +-- .../getfldecl001/TestDescription.java | 3 +-- .../getfldecl002/TestDescription.java | 3 +-- .../getfldecl004/TestDescription.java | 3 +-- .../GetFieldModifiers/getfldmdf003/TestDescription.java | 3 +-- .../GetFieldModifiers/getfldmdf004/TestDescription.java | 3 +-- .../jvmti/GetFieldName/getfldnm003/TestDescription.java | 3 +-- .../jvmti/GetFieldName/getfldnm004/TestDescription.java | 3 +-- .../jvmti/GetFieldName/getfldnm005/TestDescription.java | 3 +-- .../jvmti/GetFrameCount/framecnt001/TestDescription.java | 3 +-- .../jvmti/GetFrameCount/framecnt002/TestDescription.java | 3 +-- .../jvmti/GetFrameCount/framecnt003/TestDescription.java | 3 +-- .../GetFrameLocation/frameloc001/TestDescription.java | 3 +-- .../GetFrameLocation/frameloc002/TestDescription.java | 3 +-- .../GetFrameLocation/frameloc003/TestDescription.java | 3 +-- .../getintrf005/TestDescription.java | 3 +-- .../getintrf006/TestDescription.java | 3 +-- .../getintrf007/TestDescription.java | 3 +-- .../GetJLocationFormat/getjlocfmt001/TestDescription.java | 3 +-- .../GetJLocationFormat/getjlocfmt002/TestDescription.java | 3 +-- .../GetJNIFunctionTable/getjniftab001/TestDescription.java | 3 +-- .../GetJNIFunctionTable/getjniftab002/TestDescription.java | 3 +-- .../GetLineNumberTable/linetab001/TestDescription.java | 3 +-- .../GetLineNumberTable/linetab002/TestDescription.java | 3 +-- .../GetLineNumberTable/linetab003/TestDescription.java | 3 +-- .../GetLoadedClasses/loadedclss001/TestDescription.java | 3 +-- .../GetLoadedClasses/loadedclss002/TestDescription.java | 3 +-- .../GetLocalVariable/getlocal001/TestDescription.java | 3 +-- .../GetLocalVariable/getlocal002/TestDescription.java | 3 +-- .../GetLocalVariableTable/localtab001/TestDescription.java | 3 +-- .../GetLocalVariableTable/localtab002/TestDescription.java | 3 +-- .../GetLocalVariableTable/localtab003/TestDescription.java | 3 +-- .../GetLocalVariableTable/localtab004/TestDescription.java | 3 +-- .../GetLocalVariableTable/localtab005/TestDescription.java | 3 +-- .../nsk/jvmti/GetMaxLocals/maxloc001/TestDescription.java | 3 +-- .../nsk/jvmti/GetMaxLocals/maxloc002/TestDescription.java | 3 +-- .../declcls001/TestDescription.java | 3 +-- .../declcls002/TestDescription.java | 3 +-- .../declcls003/TestDescription.java | 3 +-- .../GetMethodLocation/methloc001/TestDescription.java | 3 +-- .../GetMethodLocation/methloc002/TestDescription.java | 3 +-- .../GetMethodModifiers/methmod001/TestDescription.java | 3 +-- .../GetMethodModifiers/methmod002/TestDescription.java | 3 +-- .../jvmti/GetMethodName/methname001/TestDescription.java | 3 +-- .../jvmti/GetMethodName/methname002/TestDescription.java | 3 +-- .../jvmti/GetMethodName/methname003/TestDescription.java | 3 +-- .../GetObjectHashCode/objhashcode001/TestDescription.java | 3 +-- .../objmonusage001/TestDescription.java | 3 +-- .../objmonusage002/TestDescription.java | 3 +-- .../objmonusage003/TestDescription.java | 3 +-- .../objmonusage004/TestDescription.java | 3 +-- .../objmonusage005/TestDescription.java | 3 +-- .../objmonusage006/TestDescription.java | 3 +-- .../jvmti/GetObjectSize/objsize001/TestDescription.java | 3 +-- .../GetObjectsWithTags/objwithtags001/TestDescription.java | 3 +-- .../GetOwnedMonitorInfo/ownmoninf001/TestDescription.java | 3 +-- .../GetOwnedMonitorInfo/ownmoninf002/TestDescription.java | 3 +-- .../GetOwnedMonitorInfo/ownmoninf003/TestDescription.java | 3 +-- .../nsk/jvmti/GetPhase/getphase001/TestDescription.java | 3 +-- .../nsk/jvmti/GetPhase/getphase002/TestDescription.java | 3 +-- .../getpotcaps001/TestDescription.java | 3 +-- .../srcdebugex001/TestDescription.java | 3 +-- .../srcdebugex002/TestDescription.java | 3 +-- .../srcdebugex003/TestDescription.java | 3 +-- .../GetSourceFileName/getsrcfn004/TestDescription.java | 3 +-- .../GetSourceFileName/getsrcfn005/TestDescription.java | 3 +-- .../GetSourceFileName/getsrcfn006/TestDescription.java | 3 +-- .../jvmti/GetStackTrace/getstacktr001/TestDescription.java | 3 +-- .../jvmti/GetStackTrace/getstacktr002/TestDescription.java | 3 +-- .../jvmti/GetStackTrace/getstacktr003/TestDescription.java | 3 +-- .../jvmti/GetStackTrace/getstacktr004/TestDescription.java | 3 +-- .../jvmti/GetStackTrace/getstacktr005/TestDescription.java | 3 +-- .../jvmti/GetStackTrace/getstacktr006/TestDescription.java | 3 +-- .../jvmti/GetStackTrace/getstacktr007/TestDescription.java | 3 +-- .../jvmti/GetStackTrace/getstacktr008/TestDescription.java | 3 +-- .../jvmti/GetStackTrace/getstacktr009/TestDescription.java | 3 +-- .../getsysprops001/TestDescription.java | 3 +-- .../getsysprops002/TestDescription.java | 3 +-- .../GetSystemProperty/getsysprop001/TestDescription.java | 3 +-- .../GetSystemProperty/getsysprop002/TestDescription.java | 3 +-- .../nsk/jvmti/GetTag/gettag001/TestDescription.java | 3 +-- .../GetThreadCpuTime/thrcputime001/TestDescription.java | 3 +-- .../GetThreadCpuTime/thrcputime002/TestDescription.java | 3 +-- .../thrtimerinfo001/TestDescription.java | 3 +-- .../getthrdgrpchld001/TestDescription.java | 3 +-- .../GetThreadGroupInfo/thrgrpinfo001/TestDescription.java | 3 +-- .../GetThreadGroupInfo/thrgrpinfo002/TestDescription.java | 3 +-- .../jvmti/GetThreadInfo/thrinfo001/TestDescription.java | 3 +-- .../jvmti/GetThreadInfo/thrinfo002/TestDescription.java | 3 +-- .../getthrdstor001/TestDescription.java | 3 +-- .../jvmti/GetThreadState/thrstat001/TestDescription.java | 3 +-- .../jvmti/GetThreadState/thrstat002/TestDescription.java | 3 +-- .../jvmti/GetThreadState/thrstat003/TestDescription.java | 3 +-- .../jvmti/GetThreadState/thrstat004/TestDescription.java | 3 +-- .../jvmti/GetThreadState/thrstat005/TestDescription.java | 3 +-- .../nsk/jvmti/GetTime/gettime001/TestDescription.java | 3 +-- .../jvmti/GetTimerInfo/timerinfo001/TestDescription.java | 3 +-- .../GetTopThreadGroups/topthrgrp001/TestDescription.java | 3 +-- .../GetTopThreadGroups/topthrgrp002/TestDescription.java | 3 +-- .../jvmti/GetVersionNumber/getvern001/TestDescription.java | 3 +-- .../InterruptThread/intrpthrd001/TestDescription.java | 3 +-- .../InterruptThread/intrpthrd002/TestDescription.java | 3 +-- .../InterruptThread/intrpthrd003/TestDescription.java | 3 +-- .../nsk/jvmti/IsArrayClass/isarray004/TestDescription.java | 3 +-- .../nsk/jvmti/IsArrayClass/isarray005/TestDescription.java | 3 +-- .../IsFieldSynthetic/isfldsin002/TestDescription.java | 3 +-- .../IsFieldSynthetic/isfldsin003/TestDescription.java | 3 +-- .../nsk/jvmti/IsInterface/isintrf004/TestDescription.java | 3 +-- .../nsk/jvmti/IsInterface/isintrf005/TestDescription.java | 3 +-- .../jvmti/IsMethodNative/isnative001/TestDescription.java | 3 +-- .../jvmti/IsMethodNative/isnative002/TestDescription.java | 3 +-- .../IsMethodObsolete/isobsolete001/TestDescription.java | 3 +-- .../IsMethodSynthetic/issynth001/TestDescription.java | 3 +-- .../IsMethodSynthetic/issynth002/TestDescription.java | 3 +-- .../jvmti/IterateOverHeap/iterheap001/TestDescription.java | 3 +-- .../jvmti/IterateOverHeap/iterheap002/TestDescription.java | 3 +-- .../jvmti/IterateOverHeap/iterheap003/TestDescription.java | 3 +-- .../jvmti/IterateOverHeap/iterheap004/TestDescription.java | 3 +-- .../jvmti/IterateOverHeap/iterheap005/TestDescription.java | 3 +-- .../jvmti/IterateOverHeap/iterheap006/TestDescription.java | 3 +-- .../jvmti/IterateOverHeap/iterheap007/TestDescription.java | 3 +-- .../iterinstcls001/TestDescription.java | 3 +-- .../iterinstcls002/TestDescription.java | 3 +-- .../iterinstcls003/TestDescription.java | 3 +-- .../iterinstcls004/TestDescription.java | 3 +-- .../iterinstcls005/TestDescription.java | 3 +-- .../iterinstcls006/TestDescription.java | 3 +-- .../iterinstcls007/TestDescription.java | 3 +-- .../iterobjreachobj001/TestDescription.java | 3 +-- .../iterobjreachobj002/TestDescription.java | 3 +-- .../iterobjreachobj003/TestDescription.java | 3 +-- .../iterobjreachobj004/TestDescription.java | 3 +-- .../iterobjreachobj005/TestDescription.java | 3 +-- .../iterreachobj001/TestDescription.java | 3 +-- .../iterreachobj002/TestDescription.java | 3 +-- .../iterreachobj003/TestDescription.java | 3 +-- .../iterreachobj004/TestDescription.java | 3 +-- .../iterreachobj005/TestDescription.java | 3 +-- .../nsk/jvmti/IterateThroughHeap/abort/Abort.java | 1 - .../nsk/jvmti/IterateThroughHeap/callbacks/Callbacks.java | 1 - .../concrete-klass-filter/TestDescription.java | 3 +-- .../filter-class-tagged/TestDescription.java | 3 +-- .../filter-class-untagged/TestDescription.java | 3 +-- .../IterateThroughHeap/filter-tagged/TestDescription.java | 3 +-- .../filter-untagged/TestDescription.java | 3 +-- .../non-concrete-klass-filter/TestDescription.java | 3 +-- .../nsk/jvmti/MethodEntry/mentry001/TestDescription.java | 3 +-- .../nsk/jvmti/MethodEntry/mentry002/TestDescription.java | 3 +-- .../nsk/jvmti/MethodExit/mexit001/TestDescription.java | 3 +-- .../nsk/jvmti/MethodExit/mexit002/TestDescription.java | 3 +-- .../mcontenter001/TestDescription.java | 3 +-- .../mcontentered001/TestDescription.java | 3 +-- .../jvmti/MonitorWait/monitorwait001/TestDescription.java | 3 +-- .../MonitorWaited/monitorwaited001/TestDescription.java | 3 +-- .../nativemethbind001/TestDescription.java | 3 +-- .../nativemethbind002/TestDescription.java | 3 +-- .../nativemethbind003/TestDescription.java | 3 +-- .../nativemethbind004/TestDescription.java | 3 +-- .../jvmti/NotifyFramePop/nframepop001/TestDescription.java | 3 +-- .../jvmti/NotifyFramePop/nframepop002/TestDescription.java | 3 +-- .../jvmti/NotifyFramePop/nframepop003/TestDescription.java | 3 +-- .../nsk/jvmti/ObjectFree/objfree001/TestDescription.java | 1 - .../nsk/jvmti/ObjectFree/objfree002/TestDescription.java | 3 +-- .../nsk/jvmti/PopFrame/popframe001/TestDescription.java | 3 +-- .../nsk/jvmti/PopFrame/popframe002/TestDescription.java | 3 +-- .../nsk/jvmti/PopFrame/popframe003/TestDescription.java | 3 +-- .../nsk/jvmti/PopFrame/popframe004/TestDescription.java | 3 +-- .../nsk/jvmti/PopFrame/popframe005/TestDescription.java | 3 +-- .../nsk/jvmti/PopFrame/popframe006/TestDescription.java | 3 +-- .../nsk/jvmti/PopFrame/popframe007/TestDescription.java | 3 +-- .../nsk/jvmti/PopFrame/popframe008/TestDescription.java | 3 +-- .../nsk/jvmti/PopFrame/popframe009/TestDescription.java | 3 +-- .../nsk/jvmti/PopFrame/popframe010/TestDescription.java | 3 +-- .../nsk/jvmti/PopFrame/popframe011/TestDescription.java | 3 +-- .../RawMonitorEnter/rawmonenter001/TestDescription.java | 3 +-- .../RawMonitorEnter/rawmonenter002/TestDescription.java | 3 +-- .../RawMonitorEnter/rawmonenter003/TestDescription.java | 3 +-- .../RawMonitorEnter/rawmonenter004/TestDescription.java | 3 +-- .../RawMonitorExit/rawmonexit001/TestDescription.java | 3 +-- .../RawMonitorExit/rawmonexit002/TestDescription.java | 3 +-- .../RawMonitorExit/rawmonexit003/TestDescription.java | 3 +-- .../RawMonitorExit/rawmonexit005/TestDescription.java | 3 +-- .../RawMonitorNotify/rawmnntfy001/TestDescription.java | 3 +-- .../RawMonitorNotify/rawmnntfy002/TestDescription.java | 3 +-- .../RawMonitorNotify/rawmnntfy003/TestDescription.java | 3 +-- .../RawMonitorNotify/rawmnntfy004/TestDescription.java | 3 +-- .../rawmnntfyall001/TestDescription.java | 3 +-- .../rawmnntfyall002/TestDescription.java | 3 +-- .../rawmnntfyall003/TestDescription.java | 3 +-- .../rawmnntfyall004/TestDescription.java | 3 +-- .../jvmti/RawMonitorWait/rawmnwait001/TestDescription.java | 3 +-- .../jvmti/RawMonitorWait/rawmnwait002/TestDescription.java | 3 +-- .../jvmti/RawMonitorWait/rawmnwait003/TestDescription.java | 3 +-- .../jvmti/RawMonitorWait/rawmnwait004/TestDescription.java | 3 +-- .../jvmti/RawMonitorWait/rawmnwait005/TestDescription.java | 3 +-- .../RedefineClasses/StressRedefine/TestDescription.java | 1 - .../TestDescription.java | 1 - .../RedefineClasses/redefclass001/TestDescription.java | 3 +-- .../RedefineClasses/redefclass002/TestDescription.java | 3 +-- .../RedefineClasses/redefclass003/TestDescription.java | 3 +-- .../RedefineClasses/redefclass004/TestDescription.java | 3 +-- .../RedefineClasses/redefclass005/TestDescription.java | 3 +-- .../RedefineClasses/redefclass006/TestDescription.java | 3 +-- .../RedefineClasses/redefclass008/TestDescription.java | 3 +-- .../RedefineClasses/redefclass009/TestDescription.java | 3 +-- .../RedefineClasses/redefclass010/TestDescription.java | 3 +-- .../RedefineClasses/redefclass011/TestDescription.java | 3 +-- .../RedefineClasses/redefclass012/TestDescription.java | 3 +-- .../RedefineClasses/redefclass013/TestDescription.java | 3 +-- .../RedefineClasses/redefclass014/TestDescription.java | 3 +-- .../RedefineClasses/redefclass015/TestDescription.java | 3 +-- .../RedefineClasses/redefclass016/TestDescription.java | 3 +-- .../RedefineClasses/redefclass017/TestDescription.java | 3 +-- .../RedefineClasses/redefclass018/TestDescription.java | 3 +-- .../RedefineClasses/redefclass019/TestDescription.java | 3 +-- .../RedefineClasses/redefclass020/TestDescription.java | 3 +-- .../RedefineClasses/redefclass021/TestDescription.java | 3 +-- .../RedefineClasses/redefclass022/TestDescription.java | 3 +-- .../RedefineClasses/redefclass023/TestDescription.java | 3 +-- .../RedefineClasses/redefclass024/TestDescription.java | 3 +-- .../RedefineClasses/redefclass025/TestDescription.java | 3 +-- .../RedefineClasses/redefclass026/TestDescription.java | 3 +-- .../RedefineClasses/redefclass027/TestDescription.java | 3 +-- .../RedefineClasses/redefclass028/TestDescription.java | 3 +-- .../RedefineClasses/redefclass029/TestDescription.java | 3 +-- .../RedefineClasses/redefclass030/TestDescription.java | 3 +-- .../RedefineClasses/redefclass031/TestDescription.java | 1 - .../RelinquishCapabilities/relcaps001/TestDescription.java | 3 +-- .../RelinquishCapabilities/relcaps002/TestDescription.java | 3 +-- .../ResourceExhausted/resexhausted001/TestDescription.java | 3 +-- .../ResourceExhausted/resexhausted002/TestDescription.java | 3 +-- .../ResourceExhausted/resexhausted003/TestDescription.java | 3 +-- .../ResourceExhausted/resexhausted004/TestDescription.java | 1 - .../jvmti/ResumeThread/resumethrd001/TestDescription.java | 3 +-- .../jvmti/ResumeThread/resumethrd002/TestDescription.java | 3 +-- .../ResumeThreadList/resumethrdlst001/TestDescription.java | 3 +-- .../ResumeThreadList/resumethrdlst002/TestDescription.java | 3 +-- .../RetransformClasses/retransform002/TestDescription.java | 3 +-- .../RetransformClasses/retransform003/TestDriver.java | 3 +-- .../RetransformClasses/retransform004/TestDescription.java | 3 +-- .../jvmti/RunAgentThread/agentthr001/TestDescription.java | 3 +-- .../jvmti/RunAgentThread/agentthr002/TestDescription.java | 3 +-- .../jvmti/RunAgentThread/agentthr003/TestDescription.java | 3 +-- .../nsk/jvmti/SetBreakpoint/setbrk002/TestDescription.java | 3 +-- .../nsk/jvmti/SetBreakpoint/setbrk003/TestDescription.java | 3 +-- .../nsk/jvmti/SetBreakpoint/setbrk005/TestDescription.java | 3 +-- .../nsk/jvmti/SetBreakpoint/setbrk007/TestDescription.java | 3 +-- .../nsk/jvmti/SetBreakpoint/setbrk008/TestDescription.java | 3 +-- .../setenvstor001/TestDescription.java | 3 +-- .../setenvstor002/TestDescription.java | 3 +-- .../setenvstor003/TestDescription.java | 3 +-- .../SetEventCallbacks/setevntcallb001/TestDescription.java | 3 +-- .../SetEventCallbacks/setevntcallb002/TestDescription.java | 3 +-- .../SetEventCallbacks/setevntcallb003/TestDescription.java | 3 +-- .../setnotif001/TestDescription.java | 3 +-- .../setextevent001/TestDescription.java | 3 +-- .../SetFieldAccessWatch/setfldw001/TestDescription.java | 3 +-- .../SetFieldAccessWatch/setfldw002/TestDescription.java | 3 +-- .../SetFieldAccessWatch/setfldw003/TestDescription.java | 3 +-- .../SetFieldAccessWatch/setfldw004/TestDescription.java | 3 +-- .../SetFieldAccessWatch/setfldw005/TestDescription.java | 3 +-- .../SetFieldAccessWatch/setfldw006/TestDescription.java | 3 +-- .../setfmodw001/TestDescription.java | 3 +-- .../setfmodw002/TestDescription.java | 3 +-- .../setfmodw003/TestDescription.java | 3 +-- .../setfmodw004/TestDescription.java | 3 +-- .../setfmodw005/TestDescription.java | 3 +-- .../setfmodw006/TestDescription.java | 3 +-- .../SetJNIFunctionTable/setjniftab001/TestDescription.java | 3 +-- .../SetJNIFunctionTable/setjniftab002/TestDescription.java | 3 +-- .../SetLocalVariable/setlocal001/TestDescription.java | 3 +-- .../SetLocalVariable/setlocal002/TestDescription.java | 3 +-- .../SetLocalVariable/setlocal003/TestDescription.java | 3 +-- .../SetLocalVariable/setlocal004/TestDescription.java | 3 +-- .../SetNativeMethodPrefix001/TestDescription.java | 3 +-- .../SetNativeMethodPrefix002/TestDriver.java | 3 +-- .../SetSystemProperty/setsysprop002/TestDescription.java | 3 +-- .../SetSystemProperty/setsysprop003/TestDescription.java | 3 +-- .../nsk/jvmti/SetTag/settag001/TestDescription.java | 3 +-- .../setthrdstor001/TestDescription.java | 3 +-- .../setthrdstor002/TestDescription.java | 3 +-- .../setthrdstor003/TestDescription.java | 3 +-- .../SetVerboseFlag/setvrbflag001/TestDescription.java | 3 +-- .../SetVerboseFlag/setvrbflag002/TestDescription.java | 3 +-- .../jvmti/SingleStep/singlestep001/TestDescription.java | 3 +-- .../jvmti/SingleStep/singlestep002/TestDescription.java | 3 +-- .../jvmti/SingleStep/singlestep003/TestDescription.java | 3 +-- .../nsk/jvmti/StopThread/stopthrd006/TestDescription.java | 3 +-- .../nsk/jvmti/StopThread/stopthrd007/TestDescription.java | 3 +-- .../SuspendThread/suspendthrd001/TestDescription.java | 3 +-- .../SuspendThread/suspendthrd002/TestDescription.java | 3 +-- .../SuspendThread/suspendthrd003/TestDescription.java | 3 +-- .../suspendthrdlst001/TestDescription.java | 3 +-- .../suspendthrdlst002/TestDescription.java | 3 +-- .../nsk/jvmti/ThreadEnd/threadend001/TestDescription.java | 3 +-- .../nsk/jvmti/ThreadEnd/threadend002/TestDescription.java | 3 +-- .../jvmti/ThreadStart/threadstart001/TestDescription.java | 3 +-- .../jvmti/ThreadStart/threadstart002/TestDescription.java | 3 +-- .../jvmti/ThreadStart/threadstart003/TestDescription.java | 3 +-- .../nsk/jvmti/VMDeath/vmdeath001/TestDescription.java | 3 +-- .../nsk/jvmti/VMInit/vminit001/TestDescription.java | 3 +-- .../jvmti/VMObjectAlloc/vmobjalloc001/TestDescription.java | 3 +-- .../allocation/AP01/ap01t001/TestDescription.java | 3 +-- .../allocation/AP02/ap02t001/TestDescription.java | 3 +-- .../allocation/AP03/ap03t001/TestDescription.java | 3 +-- .../allocation/AP04/ap04t001/TestDescription.java | 3 +-- .../allocation/AP04/ap04t002/TestDescription.java | 3 +-- .../allocation/AP04/ap04t003/TestDescription.java | 3 +-- .../allocation/AP05/ap05t001/TestDescription.java | 3 +-- .../allocation/AP05/ap05t002/TestDescription.java | 3 +-- .../allocation/AP06/ap06t001/TestDescription.java | 3 +-- .../allocation/AP07/ap07t001/TestDescription.java | 3 +-- .../allocation/AP07/ap07t002/TestDescription.java | 3 +-- .../allocation/AP09/ap09t001/TestDescription.java | 3 +-- .../allocation/AP10/ap10t001/TestDescription.java | 3 +-- .../allocation/AP11/ap11t001/TestDescription.java | 3 +-- .../allocation/AP12/ap12t001/TestDescription.java | 1 - .../scenarios/bcinstr/BI01/bi01t001/TestDescription.java | 3 +-- .../scenarios/bcinstr/BI01/bi01t002/TestDescription.java | 3 +-- .../scenarios/bcinstr/BI02/bi02t001/TestDescription.java | 3 +-- .../scenarios/bcinstr/BI02/bi02t002/TestDescription.java | 3 +-- .../scenarios/bcinstr/BI03/bi03t001/TestDescription.java | 3 +-- .../scenarios/bcinstr/BI03/bi03t002/TestDescription.java | 3 +-- .../scenarios/bcinstr/BI04/bi04t002/TestDescription.java | 7 +++---- .../capability/CM01/cm01t001/TestDescription.java | 3 +-- .../capability/CM01/cm01t002/TestDescription.java | 3 +-- .../capability/CM01/cm01t003/TestDescription.java | 3 +-- .../capability/CM01/cm01t004/TestDescription.java | 3 +-- .../capability/CM01/cm01t005/TestDescription.java | 3 +-- .../capability/CM01/cm01t006/TestDescription.java | 3 +-- .../capability/CM01/cm01t007/TestDescription.java | 3 +-- .../capability/CM01/cm01t008/TestDescription.java | 3 +-- .../capability/CM01/cm01t009/TestDescription.java | 3 +-- .../capability/CM01/cm01t010/TestDescription.java | 3 +-- .../capability/CM01/cm01t011/TestDescription.java | 3 +-- .../capability/CM01/cm01t012/TestDescription.java | 3 +-- .../capability/CM01/cm01t013/TestDescription.java | 3 +-- .../capability/CM01/cm01t014/TestDescription.java | 3 +-- .../capability/CM01/cm01t015/TestDescription.java | 3 +-- .../capability/CM01/cm01t016/TestDescription.java | 3 +-- .../capability/CM01/cm01t017/TestDescription.java | 3 +-- .../capability/CM01/cm01t018/TestDescription.java | 3 +-- .../capability/CM01/cm01t019/TestDescription.java | 3 +-- .../capability/CM01/cm01t020/TestDescription.java | 3 +-- .../capability/CM01/cm01t021/TestDescription.java | 3 +-- .../capability/CM02/cm02t001/TestDescription.java | 3 +-- .../capability/CM03/cm03t001/TestDescription.java | 3 +-- .../contention/TC01/tc01t001/TestDescription.java | 3 +-- .../contention/TC02/tc02t001/TestDescription.java | 3 +-- .../contention/TC03/tc03t001/TestDescription.java | 3 +-- .../contention/TC03/tc03t002/TestDescription.java | 3 +-- .../contention/TC04/tc04t001/TestDescription.java | 3 +-- .../contention/TC05/tc05t001/TestDescription.java | 3 +-- .../scenarios/events/EM01/em01t001/TestDescription.java | 3 +-- .../scenarios/events/EM01/em01t002/TestDescription.java | 3 +-- .../scenarios/events/EM02/em02t001/TestDescription.java | 3 +-- .../scenarios/events/EM02/em02t002/TestDescription.java | 1 - .../scenarios/events/EM02/em02t003/TestDescription.java | 1 - .../scenarios/events/EM02/em02t004/TestDescription.java | 3 +-- .../scenarios/events/EM02/em02t005/TestDescription.java | 1 - .../scenarios/events/EM02/em02t006/TestDescription.java | 1 - .../scenarios/events/EM02/em02t007/TestDescription.java | 3 +-- .../scenarios/events/EM02/em02t008/TestDescription.java | 3 +-- .../scenarios/events/EM02/em02t009/TestDescription.java | 3 +-- .../scenarios/events/EM02/em02t010/TestDescription.java | 3 +-- .../scenarios/events/EM02/em02t011/TestDescription.java | 3 +-- .../scenarios/events/EM02/em02t012/TestDescription.java | 3 +-- .../scenarios/events/EM04/em04t001/TestDescription.java | 3 +-- .../scenarios/events/EM05/em05t001/TestDescription.java | 3 +-- .../scenarios/events/EM05/em05t002/TestDescription.java | 3 +-- .../scenarios/events/EM06/em06t001/TestDescription.java | 3 +-- .../scenarios/events/EM07/em07t001/TestDescription.java | 3 +-- .../scenarios/events/EM07/em07t002/TestDescription.java | 1 - .../scenarios/extension/EX03/ex03t001/TestDescription.java | 1 - .../general_functions/GF01/gf01t001/TestDescription.java | 3 +-- .../general_functions/GF04/gf04t001/TestDescription.java | 3 +-- .../general_functions/GF06/gf06t001/TestDescription.java | 3 +-- .../general_functions/GF08/gf08t001/TestDriver.java | 1 - .../general_functions/GF08/gf08t002/TestDescription.java | 3 +-- .../general_functions/GF08/gf08t003/TestDescription.java | 3 +-- .../scenarios/hotswap/HS101/hs101t001/TestDescription.java | 3 +-- .../scenarios/hotswap/HS101/hs101t002/TestDescription.java | 3 +-- .../scenarios/hotswap/HS101/hs101t003/TestDescription.java | 3 +-- .../scenarios/hotswap/HS101/hs101t004/TestDescription.java | 3 +-- .../scenarios/hotswap/HS101/hs101t005/TestDescription.java | 3 +-- .../scenarios/hotswap/HS101/hs101t006/TestDescription.java | 3 +-- .../scenarios/hotswap/HS101/hs101t007/TestDescription.java | 3 +-- .../scenarios/hotswap/HS101/hs101t008/TestDescription.java | 3 +-- .../scenarios/hotswap/HS102/hs102t001/TestDescription.java | 3 +-- .../scenarios/hotswap/HS102/hs102t002/TestDescription.java | 3 +-- .../jvmti/scenarios/hotswap/HS103/hs103t002/hs103t002.java | 3 +-- .../jvmti/scenarios/hotswap/HS104/hs104t001/hs104t001.java | 3 +-- .../jvmti/scenarios/hotswap/HS104/hs104t002/hs104t002.java | 3 +-- .../scenarios/hotswap/HS201/hs201t001/TestDescription.java | 3 +-- .../scenarios/hotswap/HS201/hs201t002/TestDescription.java | 3 +-- .../scenarios/hotswap/HS201/hs201t003/TestDescription.java | 3 +-- .../jvmti/scenarios/hotswap/HS202/hs202t001/hs202t001.java | 3 +-- .../jvmti/scenarios/hotswap/HS202/hs202t002/hs202t002.java | 3 +-- .../jvmti/scenarios/hotswap/HS203/hs203t001/hs203t001.java | 3 +-- .../jvmti/scenarios/hotswap/HS203/hs203t002/hs203t002.java | 3 +-- .../jvmti/scenarios/hotswap/HS203/hs203t003/hs203t003.java | 3 +-- .../jvmti/scenarios/hotswap/HS203/hs203t004/hs203t004.java | 3 +-- .../jvmti/scenarios/hotswap/HS204/hs204t001/hs204t001.java | 3 +-- .../jvmti/scenarios/hotswap/HS204/hs204t002/hs204t002.java | 3 +-- .../jvmti/scenarios/hotswap/HS204/hs204t003/hs204t003.java | 3 +-- .../jvmti/scenarios/hotswap/HS204/hs204t004/hs204t004.java | 3 +-- .../jvmti/scenarios/hotswap/HS301/hs301t001/hs301t001.java | 3 +-- .../jvmti/scenarios/hotswap/HS301/hs301t002/hs301t002.java | 3 +-- .../jvmti/scenarios/hotswap/HS301/hs301t003/hs301t003.java | 3 +-- .../jvmti/scenarios/hotswap/HS301/hs301t004/hs301t004.java | 3 +-- .../jvmti/scenarios/hotswap/HS301/hs301t005/hs301t005.java | 3 +-- .../jvmti/scenarios/hotswap/HS302/hs302t001/hs302t001.java | 3 +-- .../jvmti/scenarios/hotswap/HS302/hs302t002/hs302t002.java | 3 +-- .../jvmti/scenarios/hotswap/HS302/hs302t003/hs302t003.java | 3 +-- .../jvmti/scenarios/hotswap/HS302/hs302t004/hs302t004.java | 3 +-- .../jvmti/scenarios/hotswap/HS302/hs302t005/hs302t005.java | 3 +-- .../jvmti/scenarios/hotswap/HS302/hs302t006/hs302t006.java | 3 +-- .../jvmti/scenarios/hotswap/HS302/hs302t007/hs302t007.java | 3 +-- .../jvmti/scenarios/hotswap/HS302/hs302t008/hs302t008.java | 3 +-- .../jvmti/scenarios/hotswap/HS302/hs302t009/hs302t009.java | 3 +-- .../jvmti/scenarios/hotswap/HS302/hs302t010/hs302t010.java | 3 +-- .../jvmti/scenarios/hotswap/HS302/hs302t011/hs302t011.java | 3 +-- .../jvmti/scenarios/hotswap/HS302/hs302t012/hs302t012.java | 3 +-- .../jni_interception/JI01/ji01t001/TestDescription.java | 3 +-- .../jni_interception/JI03/ji03t001/TestDescription.java | 3 +-- .../jni_interception/JI03/ji03t002/TestDescription.java | 3 +-- .../jni_interception/JI03/ji03t003/TestDescription.java | 3 +-- .../jni_interception/JI03/ji03t004/TestDescription.java | 3 +-- .../jni_interception/JI05/ji05t001/TestDescription.java | 3 +-- .../jni_interception/JI06/ji06t001/TestDescription.java | 3 +-- .../scenarios/multienv/MA01/ma01t001/TestDescription.java | 3 +-- .../jvmti/scenarios/multienv/MA02/ma02t001/TestDriver.java | 3 +-- .../scenarios/multienv/MA03/ma03t001/TestDescription.java | 3 +-- .../scenarios/multienv/MA04/ma04t001/TestDescription.java | 3 +-- .../scenarios/multienv/MA04/ma04t002/TestDescription.java | 3 +-- .../scenarios/multienv/MA04/ma04t003/TestDescription.java | 3 +-- .../scenarios/multienv/MA05/ma05t001/TestDescription.java | 3 +-- .../scenarios/multienv/MA06/ma06t001/TestDescription.java | 3 +-- .../scenarios/multienv/MA07/ma07t001/TestDescription.java | 3 +-- .../scenarios/multienv/MA08/ma08t001/TestDescription.java | 3 +-- .../scenarios/multienv/MA10/ma10t001/TestDescription.java | 3 +-- .../scenarios/multienv/MA10/ma10t002/TestDescription.java | 3 +-- .../scenarios/multienv/MA10/ma10t003/TestDescription.java | 3 +-- .../scenarios/multienv/MA10/ma10t004/TestDescription.java | 3 +-- .../scenarios/multienv/MA10/ma10t005/TestDescription.java | 3 +-- .../scenarios/multienv/MA10/ma10t006/TestDescription.java | 3 +-- .../scenarios/multienv/MA10/ma10t007/TestDescription.java | 3 +-- .../scenarios/multienv/MA10/ma10t008/TestDescription.java | 3 +-- .../scenarios/sampling/SP01/sp01t001/TestDescription.java | 3 +-- .../scenarios/sampling/SP01/sp01t002/TestDescription.java | 3 +-- .../scenarios/sampling/SP01/sp01t003/TestDescription.java | 3 +-- .../scenarios/sampling/SP02/sp02t001/TestDescription.java | 3 +-- .../scenarios/sampling/SP02/sp02t002/TestDescription.java | 3 +-- .../scenarios/sampling/SP02/sp02t003/TestDescription.java | 3 +-- .../scenarios/sampling/SP03/sp03t001/TestDescription.java | 3 +-- .../scenarios/sampling/SP03/sp03t002/TestDescription.java | 3 +-- .../scenarios/sampling/SP04/sp04t001/TestDescription.java | 3 +-- .../scenarios/sampling/SP04/sp04t002/TestDescription.java | 3 +-- .../scenarios/sampling/SP05/sp05t002/TestDescription.java | 3 +-- .../scenarios/sampling/SP05/sp05t003/TestDescription.java | 3 +-- .../scenarios/sampling/SP06/sp06t001/TestDescription.java | 3 +-- .../scenarios/sampling/SP06/sp06t002/TestDescription.java | 3 +-- .../scenarios/sampling/SP06/sp06t003/TestDescription.java | 3 +-- .../scenarios/sampling/SP07/sp07t001/TestDescription.java | 3 +-- .../scenarios/sampling/SP07/sp07t002/TestDescription.java | 3 +-- .../FollowReferences/followref001/TestDescription.java | 3 +-- .../FollowReferences/followref002/TestDescription.java | 3 +-- .../FollowReferences/followref003/TestDescription.java | 3 +-- .../FollowReferences/followref004/TestDescription.java | 3 +-- .../FollowReferences/followref005/TestDescription.java | 3 +-- .../FollowReferences/followref006/TestDescription.java | 3 +-- .../ForceEarlyReturn/earlyretbase/TestDescription.java | 3 +-- .../unit/ForceEarlyReturn/earlyretfp/TestDescription.java | 3 +-- .../unit/ForceEarlyReturn/earlyretint/TestDescription.java | 3 +-- .../ForceEarlyReturn/earlyretlong/TestDescription.java | 3 +-- .../unit/ForceEarlyReturn/earlyretobj/TestDescription.java | 3 +-- .../unit/ForceEarlyReturn/earlyretstr/TestDescription.java | 3 +-- .../ForceEarlyReturn/earlyretvoid/TestDescription.java | 3 +-- .../GetAllStackTraces/getallstktr001/TestDescription.java | 3 +-- .../unit/GetConstantPool/getcpool001/TestDescription.java | 3 +-- .../GetLineNumberTable/linetab004/TestDescription.java | 3 +-- .../unit/GetLocalVariable/getlocal003/TestDescription.java | 3 +-- .../unit/GetLocalVariable/getlocal004/TestDescription.java | 3 +-- .../jvmti/unit/IsSynthetic/issynth001/TestDescription.java | 3 +-- .../jvmti/unit/MethodBind/JvmtiTest/TestDescription.java | 3 +-- .../nsk/jvmti/unit/OnUnload/JvmtiTest/TestDescription.java | 3 +-- .../jvmti/unit/StackTrace/JvmtiTest/TestDescription.java | 3 +-- .../nsk/jvmti/unit/agentthr/TestDescription.java | 3 +-- .../nsk/jvmti/unit/clsldrclss00x/TestDescription.java | 3 +-- .../events/redefineCFLH/JvmtiTest/TestDescription.java | 3 +-- .../vmTestbase/nsk/jvmti/unit/extmech/TestDescription.java | 3 +-- .../JvmtiTest/TestDescription.java | 3 +-- .../unit/functions/Dispose/JvmtiTest/TestDescription.java | 3 +-- .../ForceGarbageCollection/gc/TestDescription.java | 3 +-- .../functions/environment/JvmtiTest/TestDescription.java | 3 +-- .../nosuspendMonitorInfo/JvmtiTest/TestDescription.java | 3 +-- .../nosuspendStackTrace/JvmtiTest/TestDescription.java | 3 +-- .../jvmti/unit/functions/rawmonitor/TestDescription.java | 3 +-- .../unit/heap/BasicIterationTests/TestDescription.java | 3 +-- .../nsk/jvmti/unit/heap/BasicTagTests/TestDescription.java | 3 +-- .../nsk/jvmti/unit/heap/GetWithTests/TestDescription.java | 3 +-- .../nsk/jvmti/unit/heap/HeapWalkTests/TestDescription.java | 3 +-- .../jvmti/unit/heap/ObjectFreeTests/TestDescription.java | 3 +-- .../jvmti/unit/heap/ObjectSizeTests/TestDescription.java | 3 +-- .../vmTestbase/nsk/jvmti/unit/heapref/TestDescription.java | 3 +-- .../nsk/jvmti/unit/refignore/TestDescription.java | 3 +-- .../unit/setNullVMInit/JvmtiTest/TestDescription.java | 3 +-- .../nsk/jvmti/unit/timers/JvmtiTest/TestDescription.java | 3 +-- .../exceptionjni001/TestDescription.java | 3 +-- 653 files changed, 637 insertions(+), 1287 deletions(-) diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddCapabilities/addcaps001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddCapabilities/addcaps001/TestDescription.java index 356cf2c70a5..c342131da3f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddCapabilities/addcaps001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddCapabilities/addcaps001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -53,7 +53,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:addcaps001=-waittime=5 nsk.jvmti.AddCapabilities.addcaps001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddCapabilities/addcaps002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddCapabilities/addcaps002/TestDescription.java index 17000fa1825..296387172f2 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddCapabilities/addcaps002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddCapabilities/addcaps002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -53,7 +53,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:addcaps002=-waittime=5 nsk.jvmti.AddCapabilities.addcaps002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddCapabilities/addcaps003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddCapabilities/addcaps003/TestDescription.java index c68c700e9c5..df259c5d29a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddCapabilities/addcaps003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddCapabilities/addcaps003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.AddCapabilities.addcaps003 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch001/TestDescription.java index 98899c57261..fe57295e153 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -56,7 +56,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.Consts * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch002/TestDescription.java index 7c7357e7b73..c90b602305c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -78,7 +78,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.AddToBootstrapClassLoaderSearch.bootclssearch002p * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch003/TestDescription.java index fcc15ef9cce..93a83e5d988 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -63,7 +63,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.Consts * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch004/TestDescription.java index ee0af15530c..bba88ae27b3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -63,7 +63,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.Consts * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch007/TestDescription.java index 690541b9ce8..a8c6e2563be 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -66,7 +66,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.Consts * * @comment compile ../bootclssearch003/loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch008/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch008/TestDescription.java index 42b06efd68f..2a04f1c1a6f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch008/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch008/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -69,7 +69,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.Consts * * @comment compile ../bootclssearch004/newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch009/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch009/TestDescription.java index 150ae91afe8..1cf68e55948 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch009/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch009/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.Consts * * @comment compile ../bootclssearch001/newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch010/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch010/TestDescription.java index fb7b4dffbf9..f0b0cf90552 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch010/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch010/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -82,7 +82,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.AddToBootstrapClassLoaderSearch.bootclssearch002p * * @comment compile ../bootclssearch002/loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch001/TestDescription.java index baf7afc3748..c6cc3c9fdf0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -55,7 +55,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.jvmti.JVMTITest * nsk.share.Consts * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch002/TestDescription.java index 4f02c7ec7b4..e3222d4a898 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -55,7 +55,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.AddToSystemClassLoaderSearch.systemclssearch002p * nsk.share.jvmti.JVMTITest * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch003/TestDescription.java index c4c08a91cdc..dc498440775 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -62,7 +62,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.jvmti.JVMTITest * nsk.share.Consts * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch004/TestDescription.java index 6a6859d82d8..8b44532e168 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -68,7 +68,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.jvmti.JVMTITest * nsk.share.Consts * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch005/TestDescription.java index 85bc7b0af19..31db8c62ec3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.jvmti.JVMTITest * nsk.share.Consts * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch006/TestDescription.java index dc4d369b765..7aa4812770b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AddToSystemClassLoaderSearch/systemclssearch006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.AddToSystemClassLoaderSearch.systemclssearch002p * nsk.share.jvmti.JVMTITest * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnLoad/agentonload001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnLoad/agentonload001/TestDescription.java index dce65b4f7cf..db01a532a98 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnLoad/agentonload001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnLoad/agentonload001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:agentonload001=-waittime=5 * nsk.jvmti.Agent_OnLoad.agentonload001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnLoad/agentonload002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnLoad/agentonload002/TestDescription.java index 5f9e75270b7..b643a91e10e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnLoad/agentonload002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnLoad/agentonload002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:agentonload002= nsk.jvmti.Agent_OnLoad.agentonload002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnLoad/agentonload003/TestDriver.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnLoad/agentonload003/TestDriver.java index 645beeb9fba..aa6e64a9130 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnLoad/agentonload003/TestDriver.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnLoad/agentonload003/TestDriver.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native TestDriver */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnUnload/agentonunload001/TestDriver.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnUnload/agentonunload001/TestDriver.java index edd3aa1fff7..9d8bb71cbc5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnUnload/agentonunload001/TestDriver.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Agent_OnUnload/agentonunload001/TestDriver.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native TestDriver */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Allocate/alloc001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Allocate/alloc001/TestDescription.java index c7bf3df62fb..787dc5382b3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Allocate/alloc001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Allocate/alloc001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * @library /vmTestbase * /test/lib * @requires os.family != "aix" - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.Allocate.alloc001 * @run shell alloc001.sh */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Allocate/alloc001/alloc001.sh b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Allocate/alloc001/alloc001.sh index d3da7e156a7..71ea4932f9d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Allocate/alloc001/alloc001.sh +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Allocate/alloc001/alloc001.sh @@ -23,4 +23,6 @@ # as sh's ulimit works weirdly on solaris and jtreg doesn't gurantee what # shell is used, have to use this file to be sure alloc001.bash is run by bash -bash ./alloc001.bash +: ${TESTSRC:=.} + +bash ${TESTSRC}/alloc001.bash diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach001/attach001TestRunner.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach001/attach001TestRunner.java index 72cea8f91f4..91c8faee1c0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach001/attach001TestRunner.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach001/attach001TestRunner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.AttachOnDemand.attach001.attach001TestRunner * * @comment create SimpleAgent00.jar in current directory diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach002/TestDescription.java index 4bd73dc62d3..340740a30d3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach002a/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach002a/TestDescription.java index be8dceab585..dc7b1552c6c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach002a/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach002a/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,16 +49,15 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * * @comment compile newclassXX to bin/newclassXX * @build ExecDriver * @run driver PropertyResolvingWrapper ExecDriver --cmd * ${compile.jdk}/bin/javac - * --patch-module java.base=newclass00/java.base + * --patch-module java.base=${test.src}/newclass00/java.base * -d bin/newclass00 - * newclass00/java.base/java/lang/InterruptedException.java + * ${test.src}/newclass00/java.base/java/lang/InterruptedException.java * * @build nsk.jvmti.AttachOnDemand.attach002a.attach002aTarget * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach003/TestDescription.java index c992c31bcb9..9e3c540514d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.share.aod.TargetApplicationWaitingAgents * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach004/TestDescription.java index bcda9b65f8f..2e16d3fdaeb 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.share.aod.TargetApplicationWaitingAgents * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach008/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach008/TestDescription.java index b3092df5f57..1bddb401953 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach008/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach008/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach008.attach008Target * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach009/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach009/TestDescription.java index 84ea2deb58b..d35c9023b36 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach009/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach009/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach009.attach009Target * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach010/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach010/TestDescription.java index e84ec7721ef..11e8b942a82 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach010/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach010/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.share.aod.TargetApplicationWaitingAgents * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach011/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach011/TestDescription.java index f3eb85aa837..03b30992db1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach011/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach011/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.share.aod.TargetApplicationWaitingAgents * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach012/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach012/TestDescription.java index ae8298c4c49..b48346fb26c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach012/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach012/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.share.aod.TargetApplicationWaitingAgents * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach013/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach013/TestDescription.java index e98e5954d81..aa9721ec75f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach013/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach013/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.share.aod.TargetApplicationWaitingAgents * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach014/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach014/TestDescription.java index c0356300da2..fac964fab19 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach014/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach014/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach014.attach014Target * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach015/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach015/TestDescription.java index e0e721feef0..88cd5840049 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach015/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach015/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach015.attach015Target * nsk.jvmti.AttachOnDemand.attach015.ClassToLoad1 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach020/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach020/TestDescription.java index a8edf913874..ccf670a9c0f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach020/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach020/TestDescription.java @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach020.attach020Target * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach021/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach021/TestDescription.java index 5049d94be06..4979e5ca287 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach021/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach021/TestDescription.java @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach021.attach021Target * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach022/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach022/TestDescription.java index c167ac4c341..a9ef310925d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach022/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach022/TestDescription.java @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach022.attach022Target * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach024/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach024/TestDescription.java index 34d9dafa2d9..16fc98d51df 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach024/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach024/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.share.aod.TargetApplicationWaitingAgents * nsk.jvmti.AttachOnDemand.attach024.attach024Agent00 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach030/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach030/TestDescription.java index 2ab23c8fd3b..592f7576551 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach030/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach030/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach030.attach030Target * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach031/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach031/TestDescription.java index 454cfc94ad3..05af5cb9792 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach031/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach031/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.share.aod.TargetApplicationWaitingAgents * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach034/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach034/TestDescription.java index 6747c7ab55e..a073a21e577 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach034/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach034/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.share.aod.TargetApplicationWaitingAgents * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach036/attach036TestRunner.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach036/attach036TestRunner.java index ac6ffe852a8..172508c605c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach036/attach036TestRunner.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach036/attach036TestRunner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -35,7 +35,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.AttachOnDemand.attach036.attach036TestRunner * * @comment create attach036Agent00.jar in current directory diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach037/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach037/TestDescription.java index ed400b3bb84..dcdbc669243 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach037/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach037/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach037.attach037Target * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach038/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach038/TestDescription.java index 6cf03716c54..9713b7a872f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach038/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach038/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach038.attach038Target * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach039/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach039/TestDescription.java index 7e49aa2cd5d..1fc3a808e43 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach039/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach039/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.share.aod.TargetApplicationWaitingAgents * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach040/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach040/TestDescription.java index f888f494e4c..deb62d0ab3f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach040/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach040/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach040.attach040Target * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach041/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach041/TestDescription.java index 0c0f8fe9b3b..002748af209 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach041/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach041/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach041.attach041Target * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach042/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach042/TestDescription.java index 075555ec47c..cc4898c70ca 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach042/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach042/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach042.attach042Target * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach043/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach043/TestDescription.java index 744c0cdb81c..007040172c0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach043/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach043/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach042.attach042Target * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach045/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach045/TestDescription.java index 05d499d164c..18c79f730e3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach045/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach045/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * nsk.jvmti.AttachOnDemand.attach045.attach045Target * nsk.jvmti.AttachOnDemand.attach045.ClassToLoad diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach046/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach046/TestDescription.java index 535ba00527b..0b96e8d78d7 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach046/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach046/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.aod.AODTestRunner * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach050/attach050TestRunner.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach050/attach050TestRunner.java index ea155a42558..5d5ca935c24 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach050/attach050TestRunner.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach050/attach050TestRunner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.AttachOnDemand.attach050.attach050TestRunner * nsk.share.aod.TargetApplicationWaitingAgents * @run main/othervm/native PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Breakpoint/breakpoint001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Breakpoint/breakpoint001/TestDescription.java index 36487ef4e58..f06eea6d0a9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Breakpoint/breakpoint001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Breakpoint/breakpoint001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure breakpoint001 is compiled with full debug info * @build nsk.jvmti.Breakpoint.breakpoint001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk001/TestDescription.java index 0ab9b62116b..4f66ef7bc4f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -35,7 +35,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:classfloadhk001=-waittime=5 * nsk.jvmti.ClassFileLoadHook.classfloadhk001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk002/TestDescription.java index cfafdddd82e..a51d0c428f1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -51,7 +51,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.ClassFileLoadHook.classfloadhk002r * @run main/othervm/native * -agentlib:classfloadhk002=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk003/TestDescription.java index fbe677885eb..7151b953e4a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -56,7 +56,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.ClassFileLoadHook.classfloadhk003 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk004/TestDescription.java index 0d4daa48a87..d6d72daa923 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -76,7 +76,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.ClassFileLoadHook.classfloadhk004 * nsk.jvmti.ClassFileLoadHook.classfloadhk004r * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk005/TestDescription.java index 6ff7003c504..23247693fef 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -76,7 +76,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.ClassFileLoadHook.classfloadhk005 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk006/TestDescription.java index ca2eb95c1e5..65a94855b77 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -75,7 +75,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.ClassFileLoadHook.classfloadhk006 * nsk.jvmti.ClassFileLoadHook.classfloadhk006r * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk007/TestDescription.java index dc984ae6a14..0e65034dc7e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -78,7 +78,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.ClassFileLoadHook.classfloadhk007 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk008/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk008/TestDescription.java index bb52e39a83d..fc27216ef80 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk008/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk008/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -79,7 +79,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.ClassFileLoadHook.classfloadhk008 * nsk.jvmti.ClassFileLoadHook.classfloadhk008r * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk009/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk009/TestDescription.java index 74c81f3cf68..3280d86c701 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk009/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassFileLoadHook/classfloadhk009/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -79,7 +79,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.ClassFileLoadHook.classfloadhk009 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassLoad/classload001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassLoad/classload001/TestDescription.java index 6214738d615..1611d951a47 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassLoad/classload001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassLoad/classload001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:classload001=-waittime=5 nsk.jvmti.ClassLoad.classload001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassPrepare/classprep001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassPrepare/classprep001/TestDescription.java index 48d44c23f1f..dffb4480151 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassPrepare/classprep001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassPrepare/classprep001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:classprep001 nsk.jvmti.ClassPrepare.classprep001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk001/TestDescription.java index 024774295c7..1507eea875e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:clrbrk001 nsk.jvmti.ClearBreakpoint.clrbrk001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk002/TestDescription.java index 848ae603497..b9b8da77659 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:clrbrk002 nsk.jvmti.ClearBreakpoint.clrbrk002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk005/TestDescription.java index 5949cb35f7a..d2910d22dde 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearBreakpoint/clrbrk005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:clrbrk005 nsk.jvmti.ClearBreakpoint.clrbrk005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldAccessWatch/clrfldw001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldAccessWatch/clrfldw001/TestDescription.java index 0b12903df8f..eaad9833f5f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldAccessWatch/clrfldw001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldAccessWatch/clrfldw001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:clrfldw001 nsk.jvmti.ClearFieldAccessWatch.clrfldw001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldAccessWatch/clrfldw002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldAccessWatch/clrfldw002/TestDescription.java index 759df773bb7..11770daab01 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldAccessWatch/clrfldw002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldAccessWatch/clrfldw002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:clrfldw002 nsk.jvmti.ClearFieldAccessWatch.clrfldw002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldModificationWatch/clrfmodw001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldModificationWatch/clrfmodw001/TestDescription.java index 3976b4e0a81..36c1789d315 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldModificationWatch/clrfmodw001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldModificationWatch/clrfmodw001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:clrfmodw001 nsk.jvmti.ClearFieldModificationWatch.clrfmodw001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldModificationWatch/clrfmodw002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldModificationWatch/clrfmodw002/TestDescription.java index 2df871ddd2c..d4913fdaf4e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldModificationWatch/clrfmodw002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldModificationWatch/clrfmodw002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:clrfmodw002 nsk.jvmti.ClearFieldModificationWatch.clrfmodw002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CompiledMethodLoad/compmethload001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CompiledMethodLoad/compmethload001/TestDescription.java index fa5fb695697..207913ad2c4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CompiledMethodLoad/compmethload001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CompiledMethodLoad/compmethload001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:compmethload001=-waittime=5 * nsk.jvmti.CompiledMethodLoad.compmethload001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CompiledMethodUnload/compmethunload001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CompiledMethodUnload/compmethunload001/TestDescription.java index 4ed037a9962..975f0fdee28 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CompiledMethodUnload/compmethunload001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CompiledMethodUnload/compmethunload001/TestDescription.java @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.CompiledMethodUnload.compmethunload001 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CreateRawMonitor/crrawmon001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CreateRawMonitor/crrawmon001/TestDescription.java index 15a42ce3c74..2de7efbd7e5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CreateRawMonitor/crrawmon001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CreateRawMonitor/crrawmon001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:crrawmon001 nsk.jvmti.CreateRawMonitor.crrawmon001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CreateRawMonitor/crrawmon002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CreateRawMonitor/crrawmon002/TestDescription.java index e2f8a9c18e3..18407df2b32 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CreateRawMonitor/crrawmon002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/CreateRawMonitor/crrawmon002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:crrawmon002 nsk.jvmti.CreateRawMonitor.crrawmon002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DataDumpRequest/datadumpreq001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DataDumpRequest/datadumpreq001/TestDescription.java index cb9923aad42..122cf35da84 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DataDumpRequest/datadumpreq001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DataDumpRequest/datadumpreq001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.DataDumpRequest.datadumpreq001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Deallocate/dealloc001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Deallocate/dealloc001/TestDescription.java index 9a8160c19d2..a3854199125 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Deallocate/dealloc001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Deallocate/dealloc001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:dealloc001 nsk.jvmti.Deallocate.dealloc001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DestroyRawMonitor/drrawmon001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DestroyRawMonitor/drrawmon001/TestDescription.java index 689b6145270..7d8a7ec0c37 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DestroyRawMonitor/drrawmon001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DestroyRawMonitor/drrawmon001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:drrawmon001 nsk.jvmti.DestroyRawMonitor.drrawmon001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DestroyRawMonitor/drrawmon003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DestroyRawMonitor/drrawmon003/TestDescription.java index bf164ecbeda..915cfba463d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DestroyRawMonitor/drrawmon003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DestroyRawMonitor/drrawmon003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:drrawmon003 nsk.jvmti.DestroyRawMonitor.drrawmon003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DestroyRawMonitor/drrawmon004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DestroyRawMonitor/drrawmon004/TestDescription.java index 7f51d79640e..80d86e017c1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DestroyRawMonitor/drrawmon004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DestroyRawMonitor/drrawmon004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:drrawmon004 nsk.jvmti.DestroyRawMonitor.drrawmon004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DisposeEnvironment/disposeenv001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DisposeEnvironment/disposeenv001/TestDescription.java index 91bccd30c54..4604eeb5e6d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DisposeEnvironment/disposeenv001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DisposeEnvironment/disposeenv001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:disposeenv001=-waittime=5 * nsk.jvmti.DisposeEnvironment.disposeenv001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DisposeEnvironment/disposeenv002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DisposeEnvironment/disposeenv002/TestDescription.java index c9034acc2fb..0883cb5ee8c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DisposeEnvironment/disposeenv002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DisposeEnvironment/disposeenv002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:disposeenv002=-waittime=5 * nsk.jvmti.DisposeEnvironment.disposeenv002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DynamicCodeGenerated/dyncodgen001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DynamicCodeGenerated/dyncodgen001/TestDescription.java index 03ac2d80c96..b67af1f1f98 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DynamicCodeGenerated/dyncodgen001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/DynamicCodeGenerated/dyncodgen001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:dyncodgen001=-waittime=5 * nsk.jvmti.DynamicCodeGenerated.dyncodgen001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Exception/exception001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Exception/exception001/TestDescription.java index bda61c5742e..95fcfb92bba 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Exception/exception001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Exception/exception001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile exception001a.jasm * @run main/othervm/native -agentlib:exception001 nsk.jvmti.Exception.exception001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ExceptionCatch/excatch001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ExceptionCatch/excatch001/TestDescription.java index b89444d97bd..fe6354ce433 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ExceptionCatch/excatch001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ExceptionCatch/excatch001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile excatch001a.jasm * @run main/othervm/native -agentlib:excatch001 nsk.jvmti.ExceptionCatch.excatch001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc001/TestDescription.java index f7506742efa..4bb7e98a86a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile fieldacc001a.jasm * @run main/othervm/native -agentlib:fieldacc001 nsk.jvmti.FieldAccess.fieldacc001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc002/TestDescription.java index 106ecbbbc72..e9090988f27 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:fieldacc002 nsk.jvmti.FieldAccess.fieldacc002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc003/TestDescription.java index c4732f36edd..4a2e903d18a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:fieldacc003 nsk.jvmti.FieldAccess.fieldacc003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc004/TestDescription.java index 2f98543caa0..0d0b724db75 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:fieldacc004 nsk.jvmti.FieldAccess.fieldacc004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldModification/fieldmod001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldModification/fieldmod001/TestDescription.java index 780798b9bef..f0e8bbccfe5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldModification/fieldmod001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldModification/fieldmod001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile fieldmod001a.jasm * @run main/othervm/native -agentlib:fieldmod001 nsk.jvmti.FieldModification.fieldmod001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldModification/fieldmod002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldModification/fieldmod002/TestDescription.java index 73f7c2e6d6c..f2cbd4deeed 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldModification/fieldmod002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldModification/fieldmod002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:fieldmod002 nsk.jvmti.FieldModification.fieldmod002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceEarlyReturn/ForceEarlyReturn001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceEarlyReturn/ForceEarlyReturn001/TestDescription.java index 88a244c1fc5..a6045768666 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceEarlyReturn/ForceEarlyReturn001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceEarlyReturn/ForceEarlyReturn001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ForceEarlyReturn001 * nsk.jvmti.ForceEarlyReturn.ForceEarlyReturn001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceEarlyReturn/ForceEarlyReturn002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceEarlyReturn/ForceEarlyReturn002/TestDescription.java index 1a84aa4ee62..2652eb2543a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceEarlyReturn/ForceEarlyReturn002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceEarlyReturn/ForceEarlyReturn002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ForceEarlyReturn001 * nsk.jvmti.ForceEarlyReturn.ForceEarlyReturn002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceGarbageCollection/forcegc001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceGarbageCollection/forcegc001/TestDescription.java index 3e23f1c2c76..0a1f8a0121a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceGarbageCollection/forcegc001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceGarbageCollection/forcegc001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.ForceGarbageCollection.forcegc001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceGarbageCollection/forcegc002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceGarbageCollection/forcegc002/TestDescription.java index dbf8239790e..3373997e2aa 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceGarbageCollection/forcegc002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ForceGarbageCollection/forcegc002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.ForceGarbageCollection.forcegc002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FramePop/framepop001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FramePop/framepop001/TestDescription.java index 673a317b163..05c79c1c1a2 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FramePop/framepop001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FramePop/framepop001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile framepop001a.jasm * @run main/othervm/native -agentlib:framepop001 nsk.jvmti.FramePop.framepop001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FramePop/framepop002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FramePop/framepop002/TestDescription.java index d3c5a7c0a51..0b2d06e3030 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FramePop/framepop002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/FramePop/framepop002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:framepop002 nsk.jvmti.FramePop.framepop002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GarbageCollectionFinish/gcfinish001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GarbageCollectionFinish/gcfinish001/TestDescription.java index 764cadb46f8..f43b67b7d47 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GarbageCollectionFinish/gcfinish001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GarbageCollectionFinish/gcfinish001/TestDescription.java @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -XX:-UseGCOverheadLimit * -agentlib:gcfinish001=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GarbageCollectionStart/gcstart001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GarbageCollectionStart/gcstart001/TestDescription.java index bc4a10de5f0..6f924691ff1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GarbageCollectionStart/gcstart001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GarbageCollectionStart/gcstart001/TestDescription.java @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -XX:-UseGCOverheadLimit * -agentlib:gcstart001=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GarbageCollectionStart/gcstart002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GarbageCollectionStart/gcstart002/TestDescription.java index d88e1c76a2c..85c42fcf597 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GarbageCollectionStart/gcstart002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GarbageCollectionStart/gcstart002/TestDescription.java @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -XX:-UseGCOverheadLimit * -agentlib:gcstart002=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GenerateEvents/genevents001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GenerateEvents/genevents001/TestDescription.java index c6223d26408..fab9d1b45a4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GenerateEvents/genevents001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GenerateEvents/genevents001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:genevents001=-waittime=5 * nsk.jvmti.GenerateEvents.genevents001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAllThreads/allthr001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAllThreads/allthr001/TestDescription.java index 2d929fe0e9f..6fb5cf1a64a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAllThreads/allthr001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAllThreads/allthr001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:allthr001 nsk.jvmti.GetAllThreads.allthr001 5 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAllThreads/allthr002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAllThreads/allthr002/TestDescription.java index 0ba0b8aa427..abff19068f6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAllThreads/allthr002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAllThreads/allthr002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:allthr002 nsk.jvmti.GetAllThreads.allthr002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetArgumentsSize/argsize001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetArgumentsSize/argsize001/TestDescription.java index 31588ea31be..51948fddab9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetArgumentsSize/argsize001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetArgumentsSize/argsize001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:argsize001 nsk.jvmti.GetArgumentsSize.argsize001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetArgumentsSize/argsize002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetArgumentsSize/argsize002/TestDescription.java index 41bdf875251..bb4054923b4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetArgumentsSize/argsize002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetArgumentsSize/argsize002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:argsize002 nsk.jvmti.GetArgumentsSize.argsize002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAvailableProcessors/getavailproc001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAvailableProcessors/getavailproc001/TestDescription.java index ddeb55b4b50..3e4f82b77e6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAvailableProcessors/getavailproc001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAvailableProcessors/getavailproc001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:getavailproc001=-waittime=5 * nsk.jvmti.GetAvailableProcessors.getavailproc001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes001/TestDescription.java index a590db99a98..cd2f584bd7d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:bytecodes001 nsk.jvmti.GetBytecodes.bytecodes001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes002/TestDescription.java index a4bd619553d..a53b6ac9d97 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:bytecodes002 nsk.jvmti.GetBytecodes.bytecodes002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes003/TestDescription.java index cdd526d851b..b75dc25fe49 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:bytecodes003 nsk.jvmti.GetBytecodes.bytecodes003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCapabilities/getcaps001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCapabilities/getcaps001/TestDescription.java index df567468350..5db95dc2e12 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCapabilities/getcaps001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCapabilities/getcaps001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getcaps001 nsk.jvmti.GetCapabilities.getcaps001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCapabilities/getcaps002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCapabilities/getcaps002/TestDescription.java index 362cc644b83..215856638f3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCapabilities/getcaps002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCapabilities/getcaps002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getcaps002=-waittime=5 nsk.jvmti.GetCapabilities.getcaps002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld005/TestDescription.java index 588e594ba3b..ac796cb78fc 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclfld005 nsk.jvmti.GetClassFields.getclfld005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld006/TestDescription.java index 1d5011d44af..aaf71f91ec0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclfld006 nsk.jvmti.GetClassFields.getclfld006 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld007/TestDescription.java index 8c3f30091dc..4df311688bd 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclfld007 nsk.jvmti.GetClassFields.getclfld007 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoader/getclsldr001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoader/getclsldr001/TestDescription.java index bcde71d1499..2b0f60fe178 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoader/getclsldr001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoader/getclsldr001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclsldr001 nsk.jvmti.GetClassLoader.getclsldr001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoader/getclsldr002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoader/getclsldr002/TestDescription.java index e89ed123874..03e186c58c0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoader/getclsldr002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoader/getclsldr002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclsldr002 nsk.jvmti.GetClassLoader.getclsldr002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoader/getclsldr003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoader/getclsldr003/TestDescription.java index be9a98f2a34..df45de84de6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoader/getclsldr003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoader/getclsldr003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile getclsldr003a.jasm * @run main/othervm/native -agentlib:getclsldr003 nsk.jvmti.GetClassLoader.getclsldr003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoaderClasses/clsldrclss001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoaderClasses/clsldrclss001/TestDescription.java index 19765076fae..83ea4131301 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoaderClasses/clsldrclss001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoaderClasses/clsldrclss001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:clsldrclss001 nsk.jvmti.GetClassLoaderClasses.clsldrclss001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoaderClasses/clsldrclss002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoaderClasses/clsldrclss002/TestDescription.java index 4279852b813..e9f4b3e9e3f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoaderClasses/clsldrclss002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassLoaderClasses/clsldrclss002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile clsldrclss002a.jasm * @run main/othervm/native * -agentlib:clsldrclss002=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd005/TestDescription.java index 2521fada4e5..3cc98c2ea0b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclmthd005 nsk.jvmti.GetClassMethods.getclmthd005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd006/TestDescription.java index d0353bd93a3..e444956d3a5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclmthd006 nsk.jvmti.GetClassMethods.getclmthd006 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd007/TestDescription.java index 1dd03898e37..a22d1eb2f2f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclmthd007 nsk.jvmti.GetClassMethods.getclmthd007 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf004/TestDescription.java index 7c2622fcc1b..63a3765b845 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclmdf004 nsk.jvmti.GetClassModifiers.getclmdf004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf005/TestDescription.java index ddb09dcf2a5..485b94ce113 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclmdf005 nsk.jvmti.GetClassModifiers.getclmdf005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf006/TestDescription.java index 08b69a9b124..912eb9fa2c9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclmdf006 nsk.jvmti.GetClassModifiers.getclmdf006 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf007/TestDescription.java index 289d5352423..0975ca41aec 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassModifiers/getclmdf007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclmdf007 nsk.jvmti.GetClassModifiers.getclmdf007 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig004/TestDescription.java index 767d51350e3..cc42e142894 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclsig004 nsk.jvmti.GetClassSignature.getclsig004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig005/TestDescription.java index bfd7aa042ce..a679f8490a5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclsig005 nsk.jvmti.GetClassSignature.getclsig005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig006/TestDescription.java index ed514855121..8f1c49e09ab 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:getclsig006=-waittime=5 * nsk.jvmti.GetClassSignature.getclsig006 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassStatus/getclstat005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassStatus/getclstat005/TestDescription.java index d6dd4708b4b..25c290ef570 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassStatus/getclstat005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassStatus/getclstat005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclstat005 nsk.jvmti.GetClassStatus.getclstat005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassStatus/getclstat006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassStatus/getclstat006/TestDescription.java index 9fe058b5d3c..66f62ea3643 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassStatus/getclstat006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassStatus/getclstat006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclstat006 nsk.jvmti.GetClassStatus.getclstat006 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassStatus/getclstat007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassStatus/getclstat007/TestDescription.java index 227c9514f5c..a8352df70eb 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassStatus/getclstat007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassStatus/getclstat007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getclstat007 nsk.jvmti.GetClassStatus.getclstat007 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentContendedMonitor/contmon001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentContendedMonitor/contmon001/TestDescription.java index 29e8d068bef..b15117a8b3e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentContendedMonitor/contmon001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentContendedMonitor/contmon001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -61,7 +61,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:contmon001 nsk.jvmti.GetCurrentContendedMonitor.contmon001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentContendedMonitor/contmon002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentContendedMonitor/contmon002/TestDescription.java index 52bd475d918..77f22c0fb57 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentContendedMonitor/contmon002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentContendedMonitor/contmon002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:contmon002 nsk.jvmti.GetCurrentContendedMonitor.contmon002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentContendedMonitor/contmon003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentContendedMonitor/contmon003/TestDescription.java index 30f391c8045..551aea479ff 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentContendedMonitor/contmon003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentContendedMonitor/contmon003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:contmon003 nsk.jvmti.GetCurrentContendedMonitor.contmon003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentThreadCpuTime/curthrcputime001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentThreadCpuTime/curthrcputime001/TestDescription.java index e8027627518..bfcf1307de8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentThreadCpuTime/curthrcputime001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentThreadCpuTime/curthrcputime001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -73,7 +73,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.GetCurrentThreadCpuTime.curthrcputime001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentThreadCpuTimerInfo/curthrtimerinfo001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentThreadCpuTimerInfo/curthrtimerinfo001/TestDescription.java index f0a00b61dbe..459366d63bd 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentThreadCpuTimerInfo/curthrtimerinfo001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetCurrentThreadCpuTimerInfo/curthrtimerinfo001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -54,7 +54,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:curthrtimerinfo001=-waittime=5 * nsk.jvmti.GetCurrentThreadCpuTimerInfo.curthrtimerinfo001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetEnv/GetEnv001/GetEnv001.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetEnv/GetEnv001/GetEnv001.java index 6e19485df99..59905359a4c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetEnv/GetEnv001/GetEnv001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetEnv/GetEnv001/GetEnv001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:GetEnv001 nsk.jvmti.GetEnv.GetEnv001.GetEnv001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetEnvironmentLocalStorage/getenvstor001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetEnvironmentLocalStorage/getenvstor001/TestDescription.java index 45f3ddb0aef..9c202a75af1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetEnvironmentLocalStorage/getenvstor001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetEnvironmentLocalStorage/getenvstor001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:getenvstor001=-waittime=5 * nsk.jvmti.GetEnvironmentLocalStorage.getenvstor001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetErrorName/geterrname001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetErrorName/geterrname001/TestDescription.java index 300b3cebebe..d3d490731f1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetErrorName/geterrname001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetErrorName/geterrname001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:geterrname001=-waittime=5 * nsk.jvmti.GetErrorName.geterrname001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetErrorName/geterrname002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetErrorName/geterrname002/TestDescription.java index bde5cf1a0e1..7f3745d6701 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetErrorName/geterrname002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetErrorName/geterrname002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:geterrname002=-waittime=5 * nsk.jvmti.GetErrorName.geterrname002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetExtensionEvents/extevents001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetExtensionEvents/extevents001/TestDescription.java index 72bdd53a518..e5cacc97151 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetExtensionEvents/extevents001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetExtensionEvents/extevents001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:extevents001=-waittime=5 * nsk.jvmti.GetExtensionEvents.extevents001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetExtensionFunctions/extfuncs001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetExtensionFunctions/extfuncs001/TestDescription.java index dc3886850d7..70017332365 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetExtensionFunctions/extfuncs001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetExtensionFunctions/extfuncs001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:extfuncs001=-waittime=5 * nsk.jvmti.GetExtensionFunctions.extfuncs001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldDeclaringClass/getfldecl001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldDeclaringClass/getfldecl001/TestDescription.java index d9b17fee2d3..cb33ffcac9c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldDeclaringClass/getfldecl001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldDeclaringClass/getfldecl001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getfldecl001 nsk.jvmti.GetFieldDeclaringClass.getfldecl001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldDeclaringClass/getfldecl002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldDeclaringClass/getfldecl002/TestDescription.java index c00b314bfd5..c8f13e6d812 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldDeclaringClass/getfldecl002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldDeclaringClass/getfldecl002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile getfldecl002a.jasm * @run main/othervm/native -agentlib:getfldecl002 nsk.jvmti.GetFieldDeclaringClass.getfldecl002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldDeclaringClass/getfldecl004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldDeclaringClass/getfldecl004/TestDescription.java index d037dc4eb16..a2dbbca40b0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldDeclaringClass/getfldecl004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldDeclaringClass/getfldecl004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getfldecl004 nsk.jvmti.GetFieldDeclaringClass.getfldecl004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldModifiers/getfldmdf003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldModifiers/getfldmdf003/TestDescription.java index df00f799e99..ebb1a438dbd 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldModifiers/getfldmdf003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldModifiers/getfldmdf003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getfldmdf003 nsk.jvmti.GetFieldModifiers.getfldmdf003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldModifiers/getfldmdf004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldModifiers/getfldmdf004/TestDescription.java index cb3e5930229..dc414acc885 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldModifiers/getfldmdf004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldModifiers/getfldmdf004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getfldmdf004 nsk.jvmti.GetFieldModifiers.getfldmdf004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm003/TestDescription.java index 17ff247f87f..1f14413679f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getfldnm003 nsk.jvmti.GetFieldName.getfldnm003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm004/TestDescription.java index 332c8c66f3b..bdeaf9836e7 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getfldnm004 nsk.jvmti.GetFieldName.getfldnm004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm005/TestDescription.java index b9c9bcbf241..7ca010faf2e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getfldnm005=-waittime=5 nsk.jvmti.GetFieldName.getfldnm005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameCount/framecnt001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameCount/framecnt001/TestDescription.java index 298c1b6fa81..32ffbc3adba 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameCount/framecnt001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameCount/framecnt001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.GetFrameCount.framecnt001 * @run main/othervm/native ExecDriver --java * -agentlib:framecnt001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameCount/framecnt002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameCount/framecnt002/TestDescription.java index 38242cf8b4c..cfcfacc8532 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameCount/framecnt002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameCount/framecnt002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:framecnt002 nsk.jvmti.GetFrameCount.framecnt002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameCount/framecnt003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameCount/framecnt003/TestDescription.java index 2edf1945f92..7e338b3a8b8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameCount/framecnt003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameCount/framecnt003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:framecnt003 nsk.jvmti.GetFrameCount.framecnt003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc001/TestDescription.java index c0db15c0977..c0605ceda0b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile frameloc001a.jasm * @run main/othervm/native -agentlib:frameloc001 nsk.jvmti.GetFrameLocation.frameloc001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc002/TestDescription.java index 220ad58ee7c..2c7146d4e0a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:frameloc002 nsk.jvmti.GetFrameLocation.frameloc002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc003/TestDescription.java index 8d2cbd2c105..66ec63ecaa8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:frameloc003 nsk.jvmti.GetFrameLocation.frameloc003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf005/TestDescription.java index 2808533120a..43b085f7213 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getintrf005 nsk.jvmti.GetImplementedInterfaces.getintrf005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf006/TestDescription.java index 9568e4cb058..09a24edadf2 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getintrf006 nsk.jvmti.GetImplementedInterfaces.getintrf006 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf007/TestDescription.java index 175da7fd532..205af7cfc04 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getintrf007 nsk.jvmti.GetImplementedInterfaces.getintrf007 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJLocationFormat/getjlocfmt001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJLocationFormat/getjlocfmt001/TestDescription.java index 39814063b4b..1f590a0f2ce 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJLocationFormat/getjlocfmt001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJLocationFormat/getjlocfmt001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:getjlocfmt001=-waittime=5 * nsk.jvmti.GetJLocationFormat.getjlocfmt001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJLocationFormat/getjlocfmt002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJLocationFormat/getjlocfmt002/TestDescription.java index 975c80ba678..e21aec35768 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJLocationFormat/getjlocfmt002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJLocationFormat/getjlocfmt002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:getjlocfmt002=-waittime=5 * nsk.jvmti.GetJLocationFormat.getjlocfmt002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJNIFunctionTable/getjniftab001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJNIFunctionTable/getjniftab001/TestDescription.java index 42bc7bf21c4..e29bbe15aba 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJNIFunctionTable/getjniftab001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJNIFunctionTable/getjniftab001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getjniftab001 nsk.jvmti.GetJNIFunctionTable.getjniftab001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJNIFunctionTable/getjniftab002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJNIFunctionTable/getjniftab002/TestDescription.java index 0fa3e03af89..e20698a0ecf 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJNIFunctionTable/getjniftab002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJNIFunctionTable/getjniftab002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getjniftab002 nsk.jvmti.GetJNIFunctionTable.getjniftab002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab001/TestDescription.java index 45cea28ac8a..a30fe2eec25 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:linetab001 nsk.jvmti.GetLineNumberTable.linetab001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab002/TestDescription.java index ef1bce2d387..a4e4bf622e2 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:linetab002 nsk.jvmti.GetLineNumberTable.linetab002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab003/TestDescription.java index 24bbc7793f9..e8ec1b0faa0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure linetab003 is compiled with no debug info * @build nsk.jvmti.GetLineNumberTable.linetab003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLoadedClasses/loadedclss001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLoadedClasses/loadedclss001/TestDescription.java index 07749c7a2e5..7e6227868d1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLoadedClasses/loadedclss001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLoadedClasses/loadedclss001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:loadedclss001 nsk.jvmti.GetLoadedClasses.loadedclss001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLoadedClasses/loadedclss002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLoadedClasses/loadedclss002/TestDescription.java index 287dc962d63..31c8cf45d40 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLoadedClasses/loadedclss002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLoadedClasses/loadedclss002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:loadedclss002=-waittime=5 * nsk.jvmti.GetLoadedClasses.loadedclss002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariable/getlocal001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariable/getlocal001/TestDescription.java index b3314c3f43e..54b982a2833 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariable/getlocal001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariable/getlocal001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure getlocal001 is compiled with full debug info * @build nsk.jvmti.GetLocalVariable.getlocal001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariable/getlocal002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariable/getlocal002/TestDescription.java index 360d9579246..e4a015d16bc 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariable/getlocal002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariable/getlocal002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure getlocal002 is compiled with full debug info * @build nsk.jvmti.GetLocalVariable.getlocal002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab001/TestDescription.java index 57c144617b2..a14d234bcf1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile localtab001.jcod * @run main/othervm/native -agentlib:localtab001 nsk.jvmti.GetLocalVariableTable.localtab001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab002/TestDescription.java index 760704c8118..9ac2a076379 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure localtab002 is compiled with full debug info * @build nsk.jvmti.GetLocalVariableTable.localtab002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab003/TestDescription.java index cab4230034f..f0229693135 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure localtab003 is compiled with no debug info * @build nsk.jvmti.GetLocalVariableTable.localtab003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab004/TestDescription.java index e7e1f589cf0..6eeae469c50 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure localtab004 is compiled with full debug info * @build nsk.jvmti.GetLocalVariableTable.localtab004 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab005/TestDescription.java index 63008d3c7ba..18ceb8d216f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure localtab005 is compiled with full debug info * @build nsk.jvmti.GetLocalVariableTable.localtab005 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMaxLocals/maxloc001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMaxLocals/maxloc001/TestDescription.java index d02c54f7097..1c8afe79ba1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMaxLocals/maxloc001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMaxLocals/maxloc001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:maxloc001 nsk.jvmti.GetMaxLocals.maxloc001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMaxLocals/maxloc002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMaxLocals/maxloc002/TestDescription.java index 02464a46900..4b6c0f5881b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMaxLocals/maxloc002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMaxLocals/maxloc002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:maxloc002 nsk.jvmti.GetMaxLocals.maxloc002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls001/TestDescription.java index d3390070ef6..5fe7c43ad38 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:declcls001 nsk.jvmti.GetMethodDeclaringClass.declcls001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls002/TestDescription.java index 88913e67a1c..fc1e72b9959 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:declcls002 nsk.jvmti.GetMethodDeclaringClass.declcls002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls003/TestDescription.java index 585c49c7938..a5ec5192c04 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:declcls003 nsk.jvmti.GetMethodDeclaringClass.declcls003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodLocation/methloc001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodLocation/methloc001/TestDescription.java index 0954a2da937..e25b22ddfd2 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodLocation/methloc001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodLocation/methloc001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:methloc001 nsk.jvmti.GetMethodLocation.methloc001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodLocation/methloc002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodLocation/methloc002/TestDescription.java index e19565b4395..ae984c9b943 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodLocation/methloc002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodLocation/methloc002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:methloc002 nsk.jvmti.GetMethodLocation.methloc002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodModifiers/methmod001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodModifiers/methmod001/TestDescription.java index cc3b7042725..96af600a869 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodModifiers/methmod001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodModifiers/methmod001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:methmod001 nsk.jvmti.GetMethodModifiers.methmod001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodModifiers/methmod002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodModifiers/methmod002/TestDescription.java index 51813cca51f..c32218e4b03 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodModifiers/methmod002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodModifiers/methmod002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:methmod002 nsk.jvmti.GetMethodModifiers.methmod002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname001/TestDescription.java index baa3e7b7707..69367c22f02 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:methname001 nsk.jvmti.GetMethodName.methname001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname002/TestDescription.java index 9a8631025a3..85f8ddc4243 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:methname002 nsk.jvmti.GetMethodName.methname002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname003/TestDescription.java index 02fb0b04b51..119ea5616d7 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:methname003=-waittime=5 nsk.jvmti.GetMethodName.methname003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectHashCode/objhashcode001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectHashCode/objhashcode001/TestDescription.java index 56e634ef8f9..735c839e5b5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectHashCode/objhashcode001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectHashCode/objhashcode001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:objhashcode001=-waittime=5 * nsk.jvmti.GetObjectHashCode.objhashcode001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage001/TestDescription.java index 2024e4e74ee..6baae36c077 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:objmonusage001 nsk.jvmti.GetObjectMonitorUsage.objmonusage001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage002/TestDescription.java index 62e163f04e2..64c4a4af6c3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:objmonusage002 nsk.jvmti.GetObjectMonitorUsage.objmonusage002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage003/TestDescription.java index fe3be800f22..056613ad1be 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:objmonusage003 nsk.jvmti.GetObjectMonitorUsage.objmonusage003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage004/TestDescription.java index db2115df06c..ede7e5d6a5f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:objmonusage004 nsk.jvmti.GetObjectMonitorUsage.objmonusage004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage005/TestDescription.java index 7a612829044..2dddffc2a85 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:objmonusage005 nsk.jvmti.GetObjectMonitorUsage.objmonusage005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage006/TestDescription.java index 07353937a7e..57774b9f0d3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectMonitorUsage/objmonusage006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -Xlog:thread+smr=debug * -agentlib:objmonusage006 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectSize/objsize001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectSize/objsize001/TestDescription.java index f77846d6133..4150f72e8b0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectSize/objsize001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectSize/objsize001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:objsize001=-waittime=5 nsk.jvmti.GetObjectSize.objsize001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectsWithTags/objwithtags001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectsWithTags/objwithtags001/TestDescription.java index 6e0618ce468..0986f86fd85 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectsWithTags/objwithtags001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetObjectsWithTags/objwithtags001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.GetObjectsWithTags.objwithtags001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetOwnedMonitorInfo/ownmoninf001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetOwnedMonitorInfo/ownmoninf001/TestDescription.java index 6ae7d2e83e0..2f91018eaa0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetOwnedMonitorInfo/ownmoninf001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetOwnedMonitorInfo/ownmoninf001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -62,7 +62,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:ownmoninf001 nsk.jvmti.GetOwnedMonitorInfo.ownmoninf001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetOwnedMonitorInfo/ownmoninf002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetOwnedMonitorInfo/ownmoninf002/TestDescription.java index 10069208f60..7e59a751732 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetOwnedMonitorInfo/ownmoninf002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetOwnedMonitorInfo/ownmoninf002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:ownmoninf002 nsk.jvmti.GetOwnedMonitorInfo.ownmoninf002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetOwnedMonitorInfo/ownmoninf003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetOwnedMonitorInfo/ownmoninf003/TestDescription.java index 7b757d32b1b..450a464387c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetOwnedMonitorInfo/ownmoninf003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetOwnedMonitorInfo/ownmoninf003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:ownmoninf003 nsk.jvmti.GetOwnedMonitorInfo.ownmoninf003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetPhase/getphase001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetPhase/getphase001/TestDescription.java index 49120dd55ef..21492c4f668 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetPhase/getphase001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetPhase/getphase001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getphase001=-waittime=5 nsk.jvmti.GetPhase.getphase001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetPhase/getphase002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetPhase/getphase002/TestDescription.java index 0d1f73ee81d..1c292f00bbd 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetPhase/getphase002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetPhase/getphase002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getphase002=-waittime=5 nsk.jvmti.GetPhase.getphase002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetPotentialCapabilities/getpotcaps001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetPotentialCapabilities/getpotcaps001/TestDescription.java index 34edd001914..7096d283f0b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetPotentialCapabilities/getpotcaps001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetPotentialCapabilities/getpotcaps001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:getpotcaps001=-waittime=5 * nsk.jvmti.GetPotentialCapabilities.getpotcaps001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceDebugExtension/srcdebugex001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceDebugExtension/srcdebugex001/TestDescription.java index 95e3369ac17..dd5f6c40850 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceDebugExtension/srcdebugex001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceDebugExtension/srcdebugex001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:srcdebugex001 nsk.jvmti.GetSourceDebugExtension.srcdebugex001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceDebugExtension/srcdebugex002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceDebugExtension/srcdebugex002/TestDescription.java index 58135b3d168..fadb9ab38f8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceDebugExtension/srcdebugex002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceDebugExtension/srcdebugex002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:srcdebugex002 nsk.jvmti.GetSourceDebugExtension.srcdebugex002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceDebugExtension/srcdebugex003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceDebugExtension/srcdebugex003/TestDescription.java index bacaae74c1a..c9371649948 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceDebugExtension/srcdebugex003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceDebugExtension/srcdebugex003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile srcdebugex003.jcod * @run main/othervm/native -agentlib:srcdebugex003 nsk.jvmti.GetSourceDebugExtension.srcdebugex003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceFileName/getsrcfn004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceFileName/getsrcfn004/TestDescription.java index 9cd94f0a36c..009eac377a6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceFileName/getsrcfn004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceFileName/getsrcfn004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getsrcfn004 nsk.jvmti.GetSourceFileName.getsrcfn004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceFileName/getsrcfn005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceFileName/getsrcfn005/TestDescription.java index 21761822456..b6e8a0e63cf 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceFileName/getsrcfn005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceFileName/getsrcfn005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getsrcfn005 nsk.jvmti.GetSourceFileName.getsrcfn005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceFileName/getsrcfn006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceFileName/getsrcfn006/TestDescription.java index 8d25ed46b31..3fa6f667940 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceFileName/getsrcfn006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSourceFileName/getsrcfn006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getsrcfn006 nsk.jvmti.GetSourceFileName.getsrcfn006 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr001/TestDescription.java index 8f62f98e2af..7df2d2e3dde 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.GetStackTrace.getstacktr001 * @run main/othervm/native ExecDriver --java * -agentlib:getstacktr001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr002/TestDescription.java index 04c10fab42d..15e7f262a45 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getstacktr002 nsk.jvmti.GetStackTrace.getstacktr002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr003/TestDescription.java index 4de86c8f283..58fa9b2f9d2 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getstacktr003 nsk.jvmti.GetStackTrace.getstacktr003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr004/TestDescription.java index 8d619842942..f55fa0e0203 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getstacktr004 nsk.jvmti.GetStackTrace.getstacktr004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr005/TestDescription.java index 2df0b79c224..0ca2d00efa8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getstacktr005 nsk.jvmti.GetStackTrace.getstacktr005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr006/TestDescription.java index f5668395f93..44a0d80fd78 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getstacktr006 nsk.jvmti.GetStackTrace.getstacktr006 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr007/TestDescription.java index 38e87d0a11a..b8ea33a7813 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getstacktr007 nsk.jvmti.GetStackTrace.getstacktr007 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr008/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr008/TestDescription.java index 03329f5ceb6..da91ba9e42d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr008/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr008/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getstacktr008 nsk.jvmti.GetStackTrace.getstacktr008 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr009/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr009/TestDescription.java index f53059680e1..42e0ea589cf 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr009/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr009/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getstacktr009 nsk.jvmti.GetStackTrace.getstacktr009 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperties/getsysprops001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperties/getsysprops001/TestDescription.java index e5ca48ed3cd..8de2db3df8a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperties/getsysprops001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperties/getsysprops001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:getsysprops001=-waittime=5 * nsk.jvmti.GetSystemProperties.getsysprops001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperties/getsysprops002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperties/getsysprops002/TestDescription.java index d587a2f0840..3091473d2bc 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperties/getsysprops002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperties/getsysprops002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.GetSystemProperties.getsysprops002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperty/getsysprop001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperty/getsysprop001/TestDescription.java index d925bfc9df4..3ab32ca71b6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperty/getsysprop001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperty/getsysprop001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:getsysprop001=-waittime=5 * nsk.jvmti.GetSystemProperty.getsysprop001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperty/getsysprop002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperty/getsysprop002/TestDescription.java index 10c43238ca2..d2ea64f44fa 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperty/getsysprop002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperty/getsysprop002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.GetSystemProperty.getsysprop002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTag/gettag001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTag/gettag001/TestDescription.java index 05e61621791..df78911672d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTag/gettag001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTag/gettag001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:gettag001=-waittime=5 nsk.jvmti.GetTag.gettag001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTime/thrcputime001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTime/thrcputime001/TestDescription.java index 59e0ea0adfd..b504f2cd392 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTime/thrcputime001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTime/thrcputime001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -73,7 +73,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.GetThreadCpuTime.thrcputime001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTime/thrcputime002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTime/thrcputime002/TestDescription.java index d2cd552edb2..96b7b31284d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTime/thrcputime002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTime/thrcputime002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -75,7 +75,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.GetThreadCpuTime.thrcputime002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTimerInfo/thrtimerinfo001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTimerInfo/thrtimerinfo001/TestDescription.java index c2dd3141568..9629a676af6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTimerInfo/thrtimerinfo001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTimerInfo/thrtimerinfo001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -52,7 +52,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:thrtimerinfo001=-waittime=5 * nsk.jvmti.GetThreadCpuTimerInfo.thrtimerinfo001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadGroupChildren/getthrdgrpchld001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadGroupChildren/getthrdgrpchld001/TestDescription.java index 30940f1c41c..9ffc7b30547 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadGroupChildren/getthrdgrpchld001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadGroupChildren/getthrdgrpchld001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.GetThreadGroupChildren.getthrdgrpchld001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadGroupInfo/thrgrpinfo001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadGroupInfo/thrgrpinfo001/TestDescription.java index 9d841191f05..737908d60da 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadGroupInfo/thrgrpinfo001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadGroupInfo/thrgrpinfo001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:thrgrpinfo001 nsk.jvmti.GetThreadGroupInfo.thrgrpinfo001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadGroupInfo/thrgrpinfo002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadGroupInfo/thrgrpinfo002/TestDescription.java index d6faf82196f..6b89811c6b4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadGroupInfo/thrgrpinfo002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadGroupInfo/thrgrpinfo002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:thrgrpinfo002 nsk.jvmti.GetThreadGroupInfo.thrgrpinfo002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadInfo/thrinfo001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadInfo/thrinfo001/TestDescription.java index d626360eb16..73778aaac02 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadInfo/thrinfo001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadInfo/thrinfo001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.GetThreadInfo.thrinfo001 * @run main/othervm/native ExecDriver --java * -agentlib:thrinfo001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadInfo/thrinfo002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadInfo/thrinfo002/TestDescription.java index a0f4b1267bd..0d734492f84 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadInfo/thrinfo002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadInfo/thrinfo002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.GetThreadInfo.thrinfo002 * @run main/othervm/native ExecDriver --java * -agentlib:thrinfo002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadLocalStorage/getthrdstor001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadLocalStorage/getthrdstor001/TestDescription.java index ade2e3193e3..9fec0104d79 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadLocalStorage/getthrdstor001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadLocalStorage/getthrdstor001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:getthrdstor001=-waittime=5 * nsk.jvmti.GetThreadLocalStorage.getthrdstor001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat001/TestDescription.java index ba3263700b9..29d369bb884 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -75,7 +75,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:thrstat001 nsk.jvmti.GetThreadState.thrstat001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat002/TestDescription.java index 12dc5c64c54..291ae2bfe38 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:thrstat002 nsk.jvmti.GetThreadState.thrstat002 5 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat003/TestDescription.java index 76474419bef..d12aa7bcda8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:thrstat003 nsk.jvmti.GetThreadState.thrstat003 5 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat004/TestDescription.java index 531c4a78302..151c1345fb8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:thrstat004 nsk.jvmti.GetThreadState.thrstat004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat005/TestDescription.java index b14af22ed3d..85b5995ce5e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadState/thrstat005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -57,7 +57,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:thrstat005 nsk.jvmti.GetThreadState.thrstat005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTime/gettime001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTime/gettime001/TestDescription.java index b4ced1aae15..9af6e385e06 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTime/gettime001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTime/gettime001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:gettime001=-waittime=5 nsk.jvmti.GetTime.gettime001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTimerInfo/timerinfo001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTimerInfo/timerinfo001/TestDescription.java index 3ee164e77c9..f01be0e9495 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTimerInfo/timerinfo001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTimerInfo/timerinfo001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -51,7 +51,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:timerinfo001=-waittime=5 nsk.jvmti.GetTimerInfo.timerinfo001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTopThreadGroups/topthrgrp001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTopThreadGroups/topthrgrp001/TestDescription.java index 96119158be2..fc6a50aa45c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTopThreadGroups/topthrgrp001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTopThreadGroups/topthrgrp001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:topthrgrp001 nsk.jvmti.GetTopThreadGroups.topthrgrp001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTopThreadGroups/topthrgrp002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTopThreadGroups/topthrgrp002/TestDescription.java index 4c1061cb524..4272f35c5e0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTopThreadGroups/topthrgrp002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTopThreadGroups/topthrgrp002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:topthrgrp002 nsk.jvmti.GetTopThreadGroups.topthrgrp002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetVersionNumber/getvern001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetVersionNumber/getvern001/TestDescription.java index 16861e25d0c..a959d76acba 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetVersionNumber/getvern001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetVersionNumber/getvern001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getvern001 nsk.jvmti.GetVersionNumber.getvern001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/InterruptThread/intrpthrd001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/InterruptThread/intrpthrd001/TestDescription.java index dd301032f8a..f74b8cb6c78 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/InterruptThread/intrpthrd001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/InterruptThread/intrpthrd001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:intrpthrd001=-waittime=5 * nsk.jvmti.InterruptThread.intrpthrd001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/InterruptThread/intrpthrd002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/InterruptThread/intrpthrd002/TestDescription.java index 31e644ae5e5..c67e5b961e3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/InterruptThread/intrpthrd002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/InterruptThread/intrpthrd002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:intrpthrd002 nsk.jvmti.InterruptThread.intrpthrd002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/InterruptThread/intrpthrd003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/InterruptThread/intrpthrd003/TestDescription.java index 803eb9728f0..f2e88b23c12 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/InterruptThread/intrpthrd003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/InterruptThread/intrpthrd003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -Xlog:thread+smr=debug * -agentlib:intrpthrd003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsArrayClass/isarray004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsArrayClass/isarray004/TestDescription.java index 8016fb61c56..6ba5eb785a0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsArrayClass/isarray004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsArrayClass/isarray004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:isarray004 nsk.jvmti.IsArrayClass.isarray004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsArrayClass/isarray005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsArrayClass/isarray005/TestDescription.java index e4cba9a3701..28b4c106fc9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsArrayClass/isarray005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsArrayClass/isarray005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:isarray005 nsk.jvmti.IsArrayClass.isarray005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsFieldSynthetic/isfldsin002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsFieldSynthetic/isfldsin002/TestDescription.java index 62dc4f573b9..68ceef7a114 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsFieldSynthetic/isfldsin002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsFieldSynthetic/isfldsin002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:isfldsin002 nsk.jvmti.IsFieldSynthetic.isfldsin002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsFieldSynthetic/isfldsin003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsFieldSynthetic/isfldsin003/TestDescription.java index 078b2ab626c..b125a5f7ef6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsFieldSynthetic/isfldsin003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsFieldSynthetic/isfldsin003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile isfldsin003a.jcod * @run main/othervm/native -agentlib:isfldsin003 nsk.jvmti.IsFieldSynthetic.isfldsin003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsInterface/isintrf004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsInterface/isintrf004/TestDescription.java index 9f098226ebf..4a9d70d5198 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsInterface/isintrf004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsInterface/isintrf004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:isintrf004 nsk.jvmti.IsInterface.isintrf004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsInterface/isintrf005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsInterface/isintrf005/TestDescription.java index ca67cbafcf8..7d01d326f27 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsInterface/isintrf005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsInterface/isintrf005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:isintrf005 nsk.jvmti.IsInterface.isintrf005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodNative/isnative001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodNative/isnative001/TestDescription.java index fb6cd99c1a3..2bf7e1a8dbb 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodNative/isnative001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodNative/isnative001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:isnative001 nsk.jvmti.IsMethodNative.isnative001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodNative/isnative002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodNative/isnative002/TestDescription.java index 4adb18ab01e..95631f9dbef 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodNative/isnative002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodNative/isnative002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:isnative002 nsk.jvmti.IsMethodNative.isnative002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodObsolete/isobsolete001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodObsolete/isobsolete001/TestDescription.java index 654fca698eb..81b68e86b75 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodObsolete/isobsolete001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodObsolete/isobsolete001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.IsMethodObsolete.isobsolete001 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodSynthetic/issynth001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodSynthetic/issynth001/TestDescription.java index db21b9138b2..995ffc567e9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodSynthetic/issynth001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodSynthetic/issynth001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile issynth001a.jcod * @run main/othervm/native * -agentlib:IsMethodSyntheticIssynth001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodSynthetic/issynth002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodSynthetic/issynth002/TestDescription.java index 4f63bab8de3..3c673645e2d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodSynthetic/issynth002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodSynthetic/issynth002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:issynth002 nsk.jvmti.IsMethodSynthetic.issynth002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap001/TestDescription.java index 34734d8cc22..d76527476b8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverHeap.iterheap001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap002/TestDescription.java index be50c69ba22..37ede6f51aa 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverHeap.iterheap002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap003/TestDescription.java index beec8edaa27..07b40282758 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverHeap.iterheap003 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap004/TestDescription.java index 136343b721c..4e6c97fef14 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverHeap.iterheap004 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap005/TestDescription.java index 4babac22eb0..01caf4ab434 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -52,7 +52,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverHeap.iterheap005 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap006/TestDescription.java index 8ae57a2394d..db703771b12 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverHeap.iterheap006 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap007/TestDescription.java index 76443928e1e..1c8e99d2db0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverHeap/iterheap007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverHeap.iterheap007 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls001/TestDescription.java index 53943c6b364..417b92396e4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverInstancesOfClass.iterinstcls001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls002/TestDescription.java index 7c55c1f8a74..fe4cc483bbb 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverInstancesOfClass.iterinstcls002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls003/TestDescription.java index b2bdf431e0e..a14b8ed3ab4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverInstancesOfClass.iterinstcls003 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls004/TestDescription.java index a77a7c4d649..312d835c2ce 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverInstancesOfClass.iterinstcls004 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls005/TestDescription.java index 1abee08de59..d05bca8b83d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -52,7 +52,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverInstancesOfClass.iterinstcls005 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls006/TestDescription.java index 82adadd0870..aec316acea3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverInstancesOfClass.iterinstcls006 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls007/TestDescription.java index 9a0e99c37a2..7978730bd92 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverInstancesOfClass/iterinstcls007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverInstancesOfClass.iterinstcls007 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj001/TestDescription.java index b0e0b164450..3546ed1076a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -54,7 +54,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverObjectsReachableFromObject.iterobjreachobj001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj002/TestDescription.java index e0a4cb2b36d..d1b5544015e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverObjectsReachableFromObject.iterobjreachobj002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj003/TestDescription.java index f442b788801..b92e4e6b74b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -52,7 +52,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverObjectsReachableFromObject.iterobjreachobj003 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj004/TestDescription.java index 8282152be34..83a0bc5a3ef 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverObjectsReachableFromObject.iterobjreachobj004 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj005/TestDescription.java index 21a8bbe78ec..15c320f01eb 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverObjectsReachableFromObject/iterobjreachobj005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverObjectsReachableFromObject.iterobjreachobj005 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj001/TestDescription.java index db26d167e3e..9c84a0e8829 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -54,7 +54,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverReachableObjects.iterreachobj001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj002/TestDescription.java index 3a0bbbfee40..55cee5b2ce0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverReachableObjects.iterreachobj002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj003/TestDescription.java index b84eff10083..ff603ea4528 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -53,7 +53,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverReachableObjects.iterreachobj003 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj004/TestDescription.java index 24db1241457..2bee2d7b8e1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverReachableObjects.iterreachobj004 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj005/TestDescription.java index e2de6ba2491..95e7739022a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateOverReachableObjects/iterreachobj005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateOverReachableObjects.iterreachobj005 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/abort/Abort.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/abort/Abort.java index 3f978376875..71f6ce8aa0d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/abort/Abort.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/abort/Abort.java @@ -33,7 +33,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:Abort=-waittime=5 nsk.jvmti.IterateThroughHeap.abort.Abort */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/callbacks/Callbacks.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/callbacks/Callbacks.java index 42e2cbbe535..54271404c58 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/callbacks/Callbacks.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/callbacks/Callbacks.java @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:Callbacks=-waittime=5 * nsk.jvmti.IterateThroughHeap.callbacks.Callbacks diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/concrete-klass-filter/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/concrete-klass-filter/TestDescription.java index 0d082ee6154..d60db8b16bd 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/concrete-klass-filter/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/concrete-klass-filter/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -35,7 +35,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ConcreteKlassFilter=-waittime=5 * nsk.jvmti.IterateThroughHeap.concrete_klass_filter.ConcreteKlassFilter diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-class-tagged/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-class-tagged/TestDescription.java index 9fcc44c8a9f..cde3d1b2ea4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-class-tagged/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-class-tagged/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -30,7 +30,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateThroughHeap.filter_tagged.HeapFilter * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-class-untagged/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-class-untagged/TestDescription.java index c3cea7985a8..fabe4ad807a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-class-untagged/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-class-untagged/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -30,7 +30,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateThroughHeap.filter_tagged.HeapFilter * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-tagged/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-tagged/TestDescription.java index abb2b314221..2b2ff52591f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-tagged/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-tagged/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -62,7 +62,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateThroughHeap.filter_tagged.HeapFilter * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-untagged/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-untagged/TestDescription.java index e7332d99087..5cfa2a207e5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-untagged/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-untagged/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -30,7 +30,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.IterateThroughHeap.filter_tagged.HeapFilter * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/non-concrete-klass-filter/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/non-concrete-klass-filter/TestDescription.java index db8a89e6192..733efa1a515 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/non-concrete-klass-filter/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/non-concrete-klass-filter/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -35,7 +35,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:NonConcreteKlassFilter=-waittime=5 * nsk.jvmti.IterateThroughHeap.non_concrete_klass_filter.NonConcreteKlassFilter diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodEntry/mentry001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodEntry/mentry001/TestDescription.java index 56fb4ff5b6a..36c124bfd3f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodEntry/mentry001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodEntry/mentry001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:mentry001 nsk.jvmti.MethodEntry.mentry001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodEntry/mentry002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodEntry/mentry002/TestDescription.java index 7c911ba643c..e3e1f12b7df 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodEntry/mentry002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodEntry/mentry002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:mentry002 nsk.jvmti.MethodEntry.mentry002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodExit/mexit001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodExit/mexit001/TestDescription.java index d1084daf6f2..31499dadfa5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodExit/mexit001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodExit/mexit001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile mexit001a.jasm * @run main/othervm/native -agentlib:mexit001 nsk.jvmti.MethodExit.mexit001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodExit/mexit002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodExit/mexit002/TestDescription.java index b35181246b3..3dcabba9090 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodExit/mexit002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodExit/mexit002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @compile mexit002a.jasm * @run main/othervm/native -agentlib:mexit002 nsk.jvmti.MethodExit.mexit002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorContendedEnter/mcontenter001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorContendedEnter/mcontenter001/TestDescription.java index f8992b5e980..25e457ffb33 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorContendedEnter/mcontenter001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorContendedEnter/mcontenter001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:mcontenter001=-waittime=5 * nsk.jvmti.MonitorContendedEnter.mcontenter001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorContendedEntered/mcontentered001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorContendedEntered/mcontentered001/TestDescription.java index 46d786200ac..73a1318a9f3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorContendedEntered/mcontentered001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorContendedEntered/mcontentered001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:mcontentered001=-waittime=5 * nsk.jvmti.MonitorContendedEntered.mcontentered001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorWait/monitorwait001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorWait/monitorwait001/TestDescription.java index 8c505ef2f4d..c325d6dd1a1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorWait/monitorwait001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorWait/monitorwait001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:monitorwait001=-waittime=5 * nsk.jvmti.MonitorWait.monitorwait001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorWaited/monitorwaited001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorWaited/monitorwaited001/TestDescription.java index 6df50413155..daf6fd68fb8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorWaited/monitorwaited001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/MonitorWaited/monitorwaited001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:monitorwaited001=-waittime=5 * nsk.jvmti.MonitorWaited.monitorwaited001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind001/TestDescription.java index f19451f3d94..7c353c92cba 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:nativemethbind001=-waittime=5 * nsk.jvmti.NativeMethodBind.nativemethbind001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind002/TestDescription.java index fbaa5e5e7b7..56b02501d4a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:nativemethbind002=-waittime=5 * nsk.jvmti.NativeMethodBind.nativemethbind002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind003/TestDescription.java index f56eb48aa4c..9005021343a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:nativemethbind003=-waittime=5 * nsk.jvmti.NativeMethodBind.nativemethbind003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind004/TestDescription.java index 6a7add8313d..0df748ca36d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:nativemethbind004=-waittime=5 * nsk.jvmti.NativeMethodBind.nativemethbind004 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NotifyFramePop/nframepop001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NotifyFramePop/nframepop001/TestDescription.java index d65a1b4fbbf..b1aa0acfd82 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NotifyFramePop/nframepop001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NotifyFramePop/nframepop001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:nframepop001 nsk.jvmti.NotifyFramePop.nframepop001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NotifyFramePop/nframepop002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NotifyFramePop/nframepop002/TestDescription.java index 3185b3a6d6f..03ea4eb4fcd 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NotifyFramePop/nframepop002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NotifyFramePop/nframepop002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:nframepop002 nsk.jvmti.NotifyFramePop.nframepop002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NotifyFramePop/nframepop003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NotifyFramePop/nframepop003/TestDescription.java index f46a6e8f9a2..ddbd93d59b8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NotifyFramePop/nframepop003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/NotifyFramePop/nframepop003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:nframepop003 nsk.jvmti.NotifyFramePop.nframepop003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ObjectFree/objfree001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ObjectFree/objfree001/TestDescription.java index d2b6461a514..b0842695f69 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ObjectFree/objfree001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ObjectFree/objfree001/TestDescription.java @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.ObjectFree.objfree001 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ObjectFree/objfree002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ObjectFree/objfree002/TestDescription.java index 269930b4d44..6fa3bc05eee 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ObjectFree/objfree002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ObjectFree/objfree002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:objfree002=-waittime=5 nsk.jvmti.ObjectFree.objfree002 5 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe001/TestDescription.java index 2eaa7ca6996..cee94132bdd 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:popframe001 nsk.jvmti.PopFrame.popframe001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe002/TestDescription.java index f9f1879e5e5..b90d41bee9f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:popframe002 nsk.jvmti.PopFrame.popframe002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe003/TestDescription.java index a99e5fb92db..9a5129a3b8f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:popframe003 nsk.jvmti.PopFrame.popframe003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe004/TestDescription.java index 7b1dc42ef9b..3c1a8299b74 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:popframe004 nsk.jvmti.PopFrame.popframe004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe005/TestDescription.java index b2ee9c121ea..ac727c0abde 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:popframe005 nsk.jvmti.PopFrame.popframe005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe006/TestDescription.java index 996049fdea8..0b76d13904c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:popframe006 nsk.jvmti.PopFrame.popframe006 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe007/TestDescription.java index 384971aae33..c0377b299d8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:popframe007 nsk.jvmti.PopFrame.popframe007 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe008/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe008/TestDescription.java index 978a2623712..0acc3385e91 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe008/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe008/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:popframe008 nsk.jvmti.PopFrame.popframe008 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe009/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe009/TestDescription.java index 50aabd435e0..3a1dca251e0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe009/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe009/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:popframe009 nsk.jvmti.PopFrame.popframe009 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe010/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe010/TestDescription.java index 1a4eac3c1eb..7c64388fe1a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe010/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe010/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure popframe010 is compiled with full debug info * @build nsk.jvmti.PopFrame.popframe010 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe011/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe011/TestDescription.java index e1aa72c5684..f59f78cd39e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe011/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe011/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -Xlog:thread+smr=debug * -agentlib:popframe011 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter001/TestDescription.java index 3d397bb8d4c..23783d705ed 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmonenter001 nsk.jvmti.RawMonitorEnter.rawmonenter001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter002/TestDescription.java index 7ab8d8018c3..eb11541438a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmonenter002 nsk.jvmti.RawMonitorEnter.rawmonenter002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter003/TestDescription.java index b9995df90ad..3120d355679 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmonenter003 nsk.jvmti.RawMonitorEnter.rawmonenter003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter004/TestDescription.java index a18345dad1b..76a45a188bf 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorEnter/rawmonenter004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmonenter004 nsk.jvmti.RawMonitorEnter.rawmonenter004 5 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit001/TestDescription.java index bdfbb97f27f..ed44abb2a28 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmonexit001 nsk.jvmti.RawMonitorExit.rawmonexit001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit002/TestDescription.java index 7ba6ee4f7d2..fc4586fc583 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmonexit002 nsk.jvmti.RawMonitorExit.rawmonexit002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit003/TestDescription.java index 4ed04ca3091..d7feb765293 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmonexit003 nsk.jvmti.RawMonitorExit.rawmonexit003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit005/TestDescription.java index 166641d4394..fef3229ef89 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorExit/rawmonexit005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmonexit005 nsk.jvmti.RawMonitorExit.rawmonexit005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy001/TestDescription.java index 9a851d04617..f0791368529 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnntfy001 nsk.jvmti.RawMonitorNotify.rawmnntfy001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy002/TestDescription.java index e0f9d8dd825..6427965fccc 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnntfy002 nsk.jvmti.RawMonitorNotify.rawmnntfy002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy003/TestDescription.java index 11841c562c0..a95d3da890f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnntfy003 nsk.jvmti.RawMonitorNotify.rawmnntfy003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy004/TestDescription.java index 05858f0ae46..4fb6fccde46 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotify/rawmnntfy004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnntfy004 nsk.jvmti.RawMonitorNotify.rawmnntfy004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall001/TestDescription.java index 9fecea92325..6773525e9ab 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnntfyall001 nsk.jvmti.RawMonitorNotifyAll.rawmnntfyall001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall002/TestDescription.java index 8a460f7ed8b..cc8c14da442 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnntfyall002 nsk.jvmti.RawMonitorNotifyAll.rawmnntfyall002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall003/TestDescription.java index efe68d27400..2f706b0c299 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnntfyall003 nsk.jvmti.RawMonitorNotifyAll.rawmnntfyall003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall004/TestDescription.java index 05d281e594a..5242e363607 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorNotifyAll/rawmnntfyall004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnntfyall004 nsk.jvmti.RawMonitorNotifyAll.rawmnntfyall004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait001/TestDescription.java index 303b7622708..7705260e802 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnwait001 nsk.jvmti.RawMonitorWait.rawmnwait001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait002/TestDescription.java index e99de4fe5f7..401a2444398 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnwait002 nsk.jvmti.RawMonitorWait.rawmnwait002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait003/TestDescription.java index c84cdbb5324..8291f168ada 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnwait003 nsk.jvmti.RawMonitorWait.rawmnwait003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait004/TestDescription.java index 74a33f8fc17..537aca36afe 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnwait004 nsk.jvmti.RawMonitorWait.rawmnwait004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait005/TestDescription.java index de3c1a51d98..154e66dc316 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RawMonitorWait/rawmnwait005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:rawmnwait005 nsk.jvmti.RawMonitorWait.rawmnwait005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine/TestDescription.java index c5c178b569c..b9431d9867b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine/TestDescription.java @@ -31,7 +31,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.StressRedefine * @run main/othervm/native ExecDriver --java * -agentlib:stressRedefine diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/StressRedefineWithoutBytecodeCorruption/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/StressRedefineWithoutBytecodeCorruption/TestDescription.java index e1c7d9d2750..e7bea5945c9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/StressRedefineWithoutBytecodeCorruption/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/StressRedefineWithoutBytecodeCorruption/TestDescription.java @@ -31,7 +31,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -Xlog:redefine+class+iklass+purge=trace,redefine+class+iklass+add=trace * -agentlib:stressRedefine diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass001/TestDescription.java index b0a92a8b8ac..81f1bb58cae 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass001 * nsk.jvmti.RedefineClasses.redefclass001r * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass002/TestDescription.java index 431b8a92eea..be80f33ce01 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass002 * nsk.jvmti.RedefineClasses.redefclass002r * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass003/TestDescription.java index 85d2951d9e0..e870876aaf1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass003 * nsk.jvmti.RedefineClasses.redefclass003r * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass004/TestDescription.java index 7db2d2df497..56e4774d0cc 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass004 * nsk.jvmti.RedefineClasses.redefclass004r * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass005/TestDescription.java index 53e88d068bb..8b71e497b3f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass005r * @run main/othervm/native -agentlib:redefclass005 nsk.jvmti.RedefineClasses.redefclass005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass006/TestDescription.java index c7aea9f5b99..8f6e1780fce 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass006r * @run main/othervm/native -agentlib:redefclass006 nsk.jvmti.RedefineClasses.redefclass006 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass008/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass008/TestDescription.java index 0aff0621dce..c6f9d8e1431 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass008/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass008/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass008 * nsk.jvmti.RedefineClasses.redefclass008r * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass009/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass009/TestDescription.java index a19449f0477..cda461b25be 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass009/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass009/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass009 * * @comment make sure redefclass009r is compiled with full debug info diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass010/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass010/TestDescription.java index 8b1e69f7580..ae117388e2e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass010/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass010/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass010 * nsk.jvmti.RedefineClasses.redefclass010r * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass011/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass011/TestDescription.java index 09fb2acfc08..b62c921fdc8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass011/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass011/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:redefclass011 nsk.jvmti.RedefineClasses.redefclass011 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass012/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass012/TestDescription.java index 1fcca6745c6..a887d852fa6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass012/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass012/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:redefclass012 nsk.jvmti.RedefineClasses.redefclass012 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass013/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass013/TestDescription.java index 5821dd86f9f..09137195c81 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass013/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass013/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:redefclass013 nsk.jvmti.RedefineClasses.redefclass013 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass014/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass014/TestDescription.java index f0c21e6b5c7..281ab5dc8fb 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass014/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass014/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment compile newclassXX/*.jasm to bin/newclassXX * @compile newclass/redefclass014.jasm diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass015/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass015/TestDescription.java index 09c6ec2b92c..2f8bbe5e288 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass015/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass015/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass015 * * @comment compile newclassXX/*.jasm to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass016/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass016/TestDescription.java index ed07cd545d4..e00e4ca8f71 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass016/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass016/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure redefclass016 is compiled with full debug info * @build nsk.jvmti.RedefineClasses.redefclass016 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass017/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass017/TestDescription.java index 70081d62e86..dfbc48f3fb1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass017/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass017/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass017 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass018/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass018/TestDescription.java index eeeaddc4e13..19089cb3927 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass018/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass018/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass018 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass019/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass019/TestDescription.java index a713b641f8d..d8bc726605a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass019/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass019/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure redefclass019 is compiled with full debug info * @build nsk.jvmti.RedefineClasses.redefclass019 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass020/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass020/TestDescription.java index 7b9b0c81307..e4b9fb3404e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass020/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass020/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass020 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass021/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass021/TestDescription.java index 9f89305c83c..b147c6d1d86 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass021/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass021/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass021 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass022/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass022/TestDescription.java index 333256ff5b4..0e4283d7e96 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass022/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass022/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass022 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass023/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass023/TestDescription.java index 5a5dd7733bd..40764c50b7f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass023/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass023/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass023 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass024/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass024/TestDescription.java index f4878c1280e..f7a6f1901ad 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass024/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass024/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass024 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass025/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass025/TestDescription.java index b25daa3e2f1..1cbee0c0f49 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass025/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass025/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass025 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass026/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass026/TestDescription.java index 1d37887b30e..d83c2e0b624 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass026/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass026/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass026 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass027/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass027/TestDescription.java index 20755ae7530..e6c5d4dd048 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass027/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass027/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure redefclass027 is compiled with full debug info * @build nsk.jvmti.RedefineClasses.redefclass027 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass028/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass028/TestDescription.java index 03e6a666283..c033c5b09af 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass028/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass028/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass028 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass029/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass029/TestDescription.java index aea993ca66a..31e81c3727b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass029/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass029/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass029 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass030/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass030/TestDescription.java index e7c3d716757..259e6776da4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass030/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass030/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass030 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass031/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass031/TestDescription.java index 08832676c8c..9620d957ce4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass031/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass031/TestDescription.java @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.RedefineClasses.redefclass031r * @run main/othervm/native -agentlib:redefclass031 nsk.jvmti.RedefineClasses.redefclass031 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RelinquishCapabilities/relcaps001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RelinquishCapabilities/relcaps001/TestDescription.java index 26a3e46851c..3b16daac636 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RelinquishCapabilities/relcaps001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RelinquishCapabilities/relcaps001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -53,7 +53,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:relcaps001=-waittime=5 * nsk.jvmti.RelinquishCapabilities.relcaps001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RelinquishCapabilities/relcaps002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RelinquishCapabilities/relcaps002/TestDescription.java index 978c1161a2f..fd2f3340905 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RelinquishCapabilities/relcaps002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RelinquishCapabilities/relcaps002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -51,7 +51,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:relcaps002=-waittime=5 * nsk.jvmti.RelinquishCapabilities.relcaps002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted001/TestDescription.java index 167f61530fe..3bdff56b404 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @ignore 7013634 * @run main/othervm/native * -agentlib:resexhausted=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted002/TestDescription.java index 3cafd5123ec..d9f9f5c664b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * @library /vmTestbase * /test/lib * @requires !vm.graal.enabled - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:resexhausted=-waittime=5 * -Xms128m diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted003/TestDescription.java index b8fdb6749ff..b6ef5ab8487 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:resexhausted=-waittime=5 * -Xms64m diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted004/TestDescription.java index c9d8c5103bb..8b53a5627d5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted004/TestDescription.java @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:resexhausted=-waittime=5 * -Xms16m diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThread/resumethrd001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThread/resumethrd001/TestDescription.java index a69f199505d..2e1be8acffb 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThread/resumethrd001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThread/resumethrd001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:resumethrd001=-waittime=5 * nsk.jvmti.ResumeThread.resumethrd001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThread/resumethrd002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThread/resumethrd002/TestDescription.java index 22be8dd055d..12463ee5378 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThread/resumethrd002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThread/resumethrd002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:resumethrd002=-waittime=5 * nsk.jvmti.ResumeThread.resumethrd002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThreadList/resumethrdlst001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThreadList/resumethrdlst001/TestDescription.java index b1488f773a1..231213b332b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThreadList/resumethrdlst001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThreadList/resumethrdlst001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.ResumeThreadList.resumethrdlst001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThreadList/resumethrdlst002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThreadList/resumethrdlst002/TestDescription.java index fff5106cd33..b4d2b1cf190 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThreadList/resumethrdlst002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ResumeThreadList/resumethrdlst002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.ResumeThreadList.resumethrdlst002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RetransformClasses/retransform002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RetransformClasses/retransform002/TestDescription.java index 10fb1b2ab11..9f23d014426 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RetransformClasses/retransform002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RetransformClasses/retransform002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -35,7 +35,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:retransform002 nsk.jvmti.RetransformClasses.retransform002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RetransformClasses/retransform003/TestDriver.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RetransformClasses/retransform003/TestDriver.java index 739659b019c..57afb3a0e46 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RetransformClasses/retransform003/TestDriver.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RetransformClasses/retransform003/TestDriver.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.jvmti.RetransformClasses.LinearHierarchy.Class1 * * @comment duplicate retransform003 in current directory diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RetransformClasses/retransform004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RetransformClasses/retransform004/TestDescription.java index 83cf546fb9a..8cabe6e9497 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RetransformClasses/retransform004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RetransformClasses/retransform004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -35,7 +35,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:retransform004 nsk.jvmti.RetransformClasses.retransform004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RunAgentThread/agentthr001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RunAgentThread/agentthr001/TestDescription.java index 116bd415c59..c3ab82df454 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RunAgentThread/agentthr001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RunAgentThread/agentthr001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:agentthr001 nsk.jvmti.RunAgentThread.agentthr001 5 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RunAgentThread/agentthr002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RunAgentThread/agentthr002/TestDescription.java index 6430ebecfa6..511990bfc5c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RunAgentThread/agentthr002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RunAgentThread/agentthr002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:agentthr002 nsk.jvmti.RunAgentThread.agentthr002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RunAgentThread/agentthr003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RunAgentThread/agentthr003/TestDescription.java index 3ce9d2e3555..bcdf70f375d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RunAgentThread/agentthr003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/RunAgentThread/agentthr003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:agentthr003 nsk.jvmti.RunAgentThread.agentthr003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk002/TestDescription.java index b50523bbef9..c7eb6b184f1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setbrk002 nsk.jvmti.SetBreakpoint.setbrk002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk003/TestDescription.java index b9fc22acc97..f3c407c1548 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setbrk003 nsk.jvmti.SetBreakpoint.setbrk003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk005/TestDescription.java index 0fc67ad0480..bf361581291 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setbrk005 nsk.jvmti.SetBreakpoint.setbrk005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk007/TestDescription.java index bf3f67386b6..2ee66ec1eb1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setbrk007 nsk.jvmti.SetBreakpoint.setbrk007 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk008/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk008/TestDescription.java index d18ace75ec0..13f644414c9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk008/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetBreakpoint/setbrk008/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setbrk008 nsk.jvmti.SetBreakpoint.setbrk008 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEnvironmentLocalStorage/setenvstor001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEnvironmentLocalStorage/setenvstor001/TestDescription.java index 08051585443..ffba79debc8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEnvironmentLocalStorage/setenvstor001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEnvironmentLocalStorage/setenvstor001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:setenvstor001=-waittime=5 * nsk.jvmti.SetEnvironmentLocalStorage.setenvstor001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEnvironmentLocalStorage/setenvstor002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEnvironmentLocalStorage/setenvstor002/TestDescription.java index 704d8a4e37d..3f97fd08955 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEnvironmentLocalStorage/setenvstor002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEnvironmentLocalStorage/setenvstor002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:setenvstor002=-waittime=5 * nsk.jvmti.SetEnvironmentLocalStorage.setenvstor002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEnvironmentLocalStorage/setenvstor003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEnvironmentLocalStorage/setenvstor003/TestDescription.java index 6f47267d087..6f8ef52ec97 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEnvironmentLocalStorage/setenvstor003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEnvironmentLocalStorage/setenvstor003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:setenvstor003=-waittime=5 * nsk.jvmti.SetEnvironmentLocalStorage.setenvstor003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventCallbacks/setevntcallb001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventCallbacks/setevntcallb001/TestDescription.java index 1b2e46a3351..53a69af60d5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventCallbacks/setevntcallb001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventCallbacks/setevntcallb001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:setevntcallb001=-waittime=5 * nsk.jvmti.SetEventCallbacks.setevntcallb001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventCallbacks/setevntcallb002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventCallbacks/setevntcallb002/TestDescription.java index 2094f7fa6b4..f1f808557b2 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventCallbacks/setevntcallb002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventCallbacks/setevntcallb002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:setevntcallb002=-waittime=5 * nsk.jvmti.SetEventCallbacks.setevntcallb002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventCallbacks/setevntcallb003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventCallbacks/setevntcallb003/TestDescription.java index d618a0963b1..6b6d5401355 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventCallbacks/setevntcallb003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventCallbacks/setevntcallb003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:setevntcallb003=-waittime=5 * nsk.jvmti.SetEventCallbacks.setevntcallb003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventNotificationMode/setnotif001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventNotificationMode/setnotif001/TestDescription.java index 14b75453595..b5930af5a6e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventNotificationMode/setnotif001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetEventNotificationMode/setnotif001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -53,7 +53,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setnotif001 nsk.jvmti.SetEventNotificationMode.setnotif001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetExtensionEventCallback/setextevent001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetExtensionEventCallback/setextevent001/TestDescription.java index a561f2283ca..55695eda65e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetExtensionEventCallback/setextevent001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetExtensionEventCallback/setextevent001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:setextevent001=-waittime=5 * nsk.jvmti.SetExtensionEventCallback.setextevent001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw001/TestDescription.java index e6fd310c1ee..b2af4412947 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setfldw001 nsk.jvmti.SetFieldAccessWatch.setfldw001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw002/TestDescription.java index 3b4813d1cb9..b70e15c18f6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setfldw002 nsk.jvmti.SetFieldAccessWatch.setfldw002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw003/TestDescription.java index 3807a3dc390..05fc7bba671 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setfldw003 nsk.jvmti.SetFieldAccessWatch.setfldw003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw004/TestDescription.java index b87cf09e294..cc080f843ef 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setfldw004 nsk.jvmti.SetFieldAccessWatch.setfldw004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw005/TestDescription.java index 4194dcd09c1..0431739df32 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setfldw005 nsk.jvmti.SetFieldAccessWatch.setfldw005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw006/TestDescription.java index 00801deb3bd..4d8252c66be 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setfldw006 nsk.jvmti.SetFieldAccessWatch.setfldw006 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw001/TestDescription.java index 9efb20f0b00..1decdae357d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setfmodw001 nsk.jvmti.SetFieldModificationWatch.setfmodw001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw002/TestDescription.java index acb25407abc..72ddd892612 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setfmodw002 nsk.jvmti.SetFieldModificationWatch.setfmodw002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw003/TestDescription.java index 1f699f3c624..2f4738b4eac 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setfmodw003 nsk.jvmti.SetFieldModificationWatch.setfmodw003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw004/TestDescription.java index 4486e6eb72f..a26c5ad1727 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setfmodw004 nsk.jvmti.SetFieldModificationWatch.setfmodw004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw005/TestDescription.java index 40a2a3fa5d4..f2da03a1fa7 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setfmodw005 nsk.jvmti.SetFieldModificationWatch.setfmodw005 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw006/TestDescription.java index 845247a0c99..92592ebe165 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setfmodw006 nsk.jvmti.SetFieldModificationWatch.setfmodw006 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetJNIFunctionTable/setjniftab001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetJNIFunctionTable/setjniftab001/TestDescription.java index c2ff53e2775..d8986500f48 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetJNIFunctionTable/setjniftab001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetJNIFunctionTable/setjniftab001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setjniftab001 nsk.jvmti.SetJNIFunctionTable.setjniftab001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetJNIFunctionTable/setjniftab002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetJNIFunctionTable/setjniftab002/TestDescription.java index 07eb8d23546..680a050d3ed 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetJNIFunctionTable/setjniftab002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetJNIFunctionTable/setjniftab002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setjniftab002 nsk.jvmti.SetJNIFunctionTable.setjniftab002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal001/TestDescription.java index e056a1f74bb..587a6fae922 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure setlocal001 is compiled with full debug info * @build nsk.jvmti.SetLocalVariable.setlocal001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal002/TestDescription.java index 5ec956cd594..ee2abe6a198 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure setlocal002 is compiled with full debug info * @build nsk.jvmti.SetLocalVariable.setlocal002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal003/TestDescription.java index 052519db3f5..2e0ef7ce0dc 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure setlocal003 is compiled with full debug info * @build nsk.jvmti.SetLocalVariable.setlocal003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal004/TestDescription.java index 1fb17931ae5..a83b005cdea 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure setlocal004 is compiled with full debug info * @build nsk.jvmti.SetLocalVariable.setlocal004 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetNativeMethodPrefix/SetNativeMethodPrefix001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetNativeMethodPrefix/SetNativeMethodPrefix001/TestDescription.java index 2caadcbca19..667b8662277 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetNativeMethodPrefix/SetNativeMethodPrefix001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetNativeMethodPrefix/SetNativeMethodPrefix001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:SetNativeMethodPrefix001 * nsk.jvmti.SetNativeMethodPrefix.SetNativeMethodPrefix001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetNativeMethodPrefix/SetNativeMethodPrefix002/TestDriver.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetNativeMethodPrefix/SetNativeMethodPrefix002/TestDriver.java index 5e74b95db8c..b1057f9893e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetNativeMethodPrefix/SetNativeMethodPrefix002/TestDriver.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetNativeMethodPrefix/SetNativeMethodPrefix002/TestDriver.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment duplicate SetNativeMethodPrefix001 in current directory * @run driver nsk.jvmti.NativeLibraryCopier diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetSystemProperty/setsysprop002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetSystemProperty/setsysprop002/TestDescription.java index e8986961150..1adaef54853 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetSystemProperty/setsysprop002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetSystemProperty/setsysprop002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.SetSystemProperty.setsysprop002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetSystemProperty/setsysprop003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetSystemProperty/setsysprop003/TestDescription.java index 46715e502b4..32dc862c55e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetSystemProperty/setsysprop003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetSystemProperty/setsysprop003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.SetSystemProperty.setsysprop003 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetTag/settag001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetTag/settag001/TestDescription.java index c64733f6413..972436e8a35 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetTag/settag001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetTag/settag001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:settag001=-waittime=5 nsk.jvmti.SetTag.settag001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetThreadLocalStorage/setthrdstor001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetThreadLocalStorage/setthrdstor001/TestDescription.java index 077b69b5a9c..81e8cca5208 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetThreadLocalStorage/setthrdstor001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetThreadLocalStorage/setthrdstor001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:setthrdstor001=-waittime=5 * nsk.jvmti.SetThreadLocalStorage.setthrdstor001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetThreadLocalStorage/setthrdstor002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetThreadLocalStorage/setthrdstor002/TestDescription.java index 308dce29499..fbd0e49d8e5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetThreadLocalStorage/setthrdstor002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetThreadLocalStorage/setthrdstor002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:setthrdstor002=-waittime=5 * nsk.jvmti.SetThreadLocalStorage.setthrdstor002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetThreadLocalStorage/setthrdstor003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetThreadLocalStorage/setthrdstor003/TestDescription.java index fecd04d6e1c..25f3d495584 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetThreadLocalStorage/setthrdstor003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetThreadLocalStorage/setthrdstor003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:setthrdstor003=-waittime=5 * nsk.jvmti.SetThreadLocalStorage.setthrdstor003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetVerboseFlag/setvrbflag001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetVerboseFlag/setvrbflag001/TestDescription.java index e70ee465336..8af42b0f6e6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetVerboseFlag/setvrbflag001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetVerboseFlag/setvrbflag001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:setvrbflag001=-waittime=5 * nsk.jvmti.SetVerboseFlag.setvrbflag001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetVerboseFlag/setvrbflag002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetVerboseFlag/setvrbflag002/TestDescription.java index 756b53ea8a2..e42e086f588 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetVerboseFlag/setvrbflag002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetVerboseFlag/setvrbflag002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:setvrbflag002=-waittime=5 * nsk.jvmti.SetVerboseFlag.setvrbflag002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep001/TestDescription.java index 7e05ad1592e..9a5182b0e98 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:singlestep001=-waittime=5 nsk.jvmti.SingleStep.singlestep001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep002/TestDescription.java index 81209c77621..c074ad77578 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:singlestep002=-waittime=5 nsk.jvmti.SingleStep.singlestep002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep003/TestDescription.java index 17ddbf921c8..ccd20ab33e4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:singlestep003=-waittime=5 nsk.jvmti.SingleStep.singlestep003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/StopThread/stopthrd006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/StopThread/stopthrd006/TestDescription.java index afc59910f47..0942a3a9b2c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/StopThread/stopthrd006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/StopThread/stopthrd006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:stopthrd006 nsk.jvmti.StopThread.stopthrd006 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/StopThread/stopthrd007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/StopThread/stopthrd007/TestDescription.java index 30745c2ba31..d7fdd84fa9a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/StopThread/stopthrd007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/StopThread/stopthrd007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:stopthrd007=-waittime=5 nsk.jvmti.StopThread.stopthrd007 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd001/TestDescription.java index d7726c9936e..de28e40e9cd 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:suspendthrd001=-waittime=5 * nsk.jvmti.SuspendThread.suspendthrd001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd002/TestDescription.java index d965377a2dc..cb63c09c989 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:suspendthrd002=-waittime=5 * nsk.jvmti.SuspendThread.suspendthrd002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd003/TestDescription.java index 99f9ca997f3..387ccf80000 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -172,7 +172,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -Xlog:thread+smr=debug * -agentlib:suspendthrd003=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThreadList/suspendthrdlst001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThreadList/suspendthrdlst001/TestDescription.java index a6a989529a0..0cf60ae8048 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThreadList/suspendthrdlst001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThreadList/suspendthrdlst001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.SuspendThreadList.suspendthrdlst001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThreadList/suspendthrdlst002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThreadList/suspendthrdlst002/TestDescription.java index 18a708aecb4..df6ceb083f3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThreadList/suspendthrdlst002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThreadList/suspendthrdlst002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.SuspendThreadList.suspendthrdlst002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadEnd/threadend001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadEnd/threadend001/TestDescription.java index 03f4a189d71..36d597c1578 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadEnd/threadend001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadEnd/threadend001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:threadend001 nsk.jvmti.ThreadEnd.threadend001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadEnd/threadend002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadEnd/threadend002/TestDescription.java index 0a6d3334799..e6c41ace324 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadEnd/threadend002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadEnd/threadend002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:threadend002=-waittime=5 nsk.jvmti.ThreadEnd.threadend002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadStart/threadstart001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadStart/threadstart001/TestDescription.java index 6250ad7697c..19951afa08b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadStart/threadstart001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadStart/threadstart001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:threadstart001 nsk.jvmti.ThreadStart.threadstart001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadStart/threadstart002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadStart/threadstart002/TestDescription.java index 60e893110dd..53ede977dff 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadStart/threadstart002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadStart/threadstart002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -60,7 +60,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:threadstart002 nsk.jvmti.ThreadStart.threadstart002 5 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadStart/threadstart003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadStart/threadstart003/TestDescription.java index a68d4d03a67..5f69f00932c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadStart/threadstart003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ThreadStart/threadstart003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:threadstart003 nsk.jvmti.ThreadStart.threadstart003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/VMDeath/vmdeath001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/VMDeath/vmdeath001/TestDescription.java index b93e3cb9a82..976e1dc7094 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/VMDeath/vmdeath001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/VMDeath/vmdeath001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:vmdeath001=-waittime=5 nsk.jvmti.VMDeath.vmdeath001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/VMInit/vminit001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/VMInit/vminit001/TestDescription.java index cbb8b5b16ed..46f1344f99c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/VMInit/vminit001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/VMInit/vminit001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:vminit001 nsk.jvmti.VMInit.vminit001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/VMObjectAlloc/vmobjalloc001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/VMObjectAlloc/vmobjalloc001/TestDescription.java index b013a2db422..7ddab6b21af 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/VMObjectAlloc/vmobjalloc001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/VMObjectAlloc/vmobjalloc001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:vmobjalloc001=-waittime=5 * nsk.jvmti.VMObjectAlloc.vmobjalloc001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP01/ap01t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP01/ap01t001/TestDescription.java index 6b62f33be70..357416731dd 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP01/ap01t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP01/ap01t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ap01t001=-waittime=5 * nsk.jvmti.scenarios.allocation.AP01.ap01t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP02/ap02t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP02/ap02t001/TestDescription.java index c06c3af8a3c..e25cd42cb93 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP02/ap02t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP02/ap02t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.allocation.AP02.ap02t001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP03/ap03t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP03/ap03t001/TestDescription.java index 9b6ff1858b3..b25648afdb4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP03/ap03t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP03/ap03t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.allocation.AP03.ap03t001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP04/ap04t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP04/ap04t001/TestDescription.java index d52214179e6..c27f441625d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP04/ap04t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP04/ap04t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -57,7 +57,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.allocation.AP04.ap04t001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP04/ap04t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP04/ap04t002/TestDescription.java index 56137819fc0..a4a3291ffa0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP04/ap04t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP04/ap04t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -57,7 +57,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.allocation.AP04.ap04t002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP04/ap04t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP04/ap04t003/TestDescription.java index 3f6dc86ee31..d68833ea8b8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP04/ap04t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP04/ap04t003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -55,7 +55,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.allocation.AP04.ap04t003 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP05/ap05t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP05/ap05t001/TestDescription.java index ec0a0cf9e31..e30633ee7d0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP05/ap05t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP05/ap05t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -59,7 +59,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ap05t001=-waittime=5 * nsk.jvmti.scenarios.allocation.AP05.ap05t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP05/ap05t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP05/ap05t002/TestDescription.java index 2cedd518dca..e5aa4ed2f29 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP05/ap05t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP05/ap05t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -52,7 +52,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ap05t002=-waittime=5 * nsk.jvmti.scenarios.allocation.AP05.ap05t002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP06/ap06t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP06/ap06t001/TestDescription.java index d5c38971e67..00375997a76 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP06/ap06t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP06/ap06t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ap06t001=-waittime=5 * nsk.jvmti.scenarios.allocation.AP06.ap06t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP07/ap07t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP07/ap07t001/TestDescription.java index 78db96d2ac5..808d1c85581 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP07/ap07t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP07/ap07t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ap07t001=-waittime=5 * nsk.jvmti.scenarios.allocation.AP07.ap07t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP07/ap07t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP07/ap07t002/TestDescription.java index 3071f42d17d..7303eba57bb 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP07/ap07t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP07/ap07t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.allocation.AP07.ap07t002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP09/ap09t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP09/ap09t001/TestDescription.java index b0080fb6e4f..3dc83e2716f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP09/ap09t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP09/ap09t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.allocation.AP09.ap09t001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP10/ap10t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP10/ap10t001/TestDescription.java index 3aaed3a7044..52e7bf29c12 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP10/ap10t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP10/ap10t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ap10t001=-waittime=5 * nsk.jvmti.scenarios.allocation.AP10.ap10t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP11/ap11t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP11/ap11t001/TestDescription.java index 0f397e41f9d..14ba38cc15b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP11/ap11t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP11/ap11t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ap11t001=-waittime=5 * nsk.jvmti.scenarios.allocation.AP11.ap11t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP12/ap12t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP12/ap12t001/TestDescription.java index 03cb483bdb3..7a2058965f5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP12/ap12t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/allocation/AP12/ap12t001/TestDescription.java @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.allocation.AP12.ap12t001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI01/bi01t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI01/bi01t001/TestDescription.java index b1629d50081..29917df746a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI01/bi01t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI01/bi01t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.bcinstr.BI01.bi01t001 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI01/bi01t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI01/bi01t002/TestDescription.java index 192282ac70e..fe73bcb219a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI01/bi01t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI01/bi01t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.bcinstr.BI01.bi01t002 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI02/bi02t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI02/bi02t001/TestDescription.java index 506ed46b9f9..79aa9bf71b3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI02/bi02t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI02/bi02t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.bcinstr.BI02.bi02t001 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI02/bi02t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI02/bi02t002/TestDescription.java index 84a7595caa4..6ec3820d886 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI02/bi02t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI02/bi02t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.bcinstr.BI02.bi02t002 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI03/bi03t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI03/bi03t001/TestDescription.java index 3815be49f7e..e067762552c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI03/bi03t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI03/bi03t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.bcinstr.BI03.bi03t001 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI03/bi03t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI03/bi03t002/TestDescription.java index 70c923e35c9..ba50ba9c93b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI03/bi03t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI03/bi03t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.bcinstr.BI03.bi03t002 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI04/bi04t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI04/bi04t002/TestDescription.java index 05f89edb6c2..5fa8bbf1183 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI04/bi04t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/bcinstr/BI04/bi04t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -51,7 +51,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.bcinstr.BI04.bi04t002 * nsk.jvmti.scenarios.bcinstr.BI04.bi04t002a * @@ -59,11 +58,11 @@ * @build ExecDriver * @run driver PropertyResolvingWrapper ExecDriver --cmd * ${compile.jdk}/bin/javac - * --patch-module java.base=newclass02/java.base + * --patch-module java.base=${test.src}/newclass02/java.base * -d bin/newclass02 * -cp ${test.class.path} * --add-reads=java.base=ALL-UNNAMED - * newclass02/java.base/java/lang/Object.java + * ${test.src}/newclass02/java.base/java/lang/Object.java * * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java * --add-reads=java.base=ALL-UNNAMED diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t001/TestDescription.java index 761c7ee3466..7de6f728903 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -70,7 +70,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure cm01t001 is compiled with full debug info * @build nsk.jvmti.scenarios.capability.CM01.cm01t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t002/TestDescription.java index e4a9714166f..4f423868b50 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -63,7 +63,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t002=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t003/TestDescription.java index 2e8edc2cbb0..ece272153e9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -65,7 +65,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t003=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t004/TestDescription.java index 19ca6f983f0..31a7a3ec142 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -63,7 +63,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t004=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t004 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t005/TestDescription.java index 41a0cb4ebd8..6c2bde9489c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -63,7 +63,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t005=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t005 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t006/TestDescription.java index 6e36dac4534..33b6008ceb4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -63,7 +63,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t006=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t006 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t007/TestDescription.java index 63936641708..709d1ed0cc2 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -63,7 +63,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t007=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t007 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t008/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t008/TestDescription.java index bf9c5a3883a..729a8ef8bf9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t008/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t008/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -63,7 +63,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t008=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t008 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t009/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t009/TestDescription.java index d22792181ed..ec3f421756d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t009/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t009/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -65,7 +65,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t009=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t009 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t010/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t010/TestDescription.java index 3a3149d45cd..6cb6af24220 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t010/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t010/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -66,7 +66,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t010=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t010 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t011/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t011/TestDescription.java index f443de47371..d207e5ffd69 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t011/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t011/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -74,7 +74,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure cm01t011 is compiled with full debug info * @build nsk.jvmti.scenarios.capability.CM01.cm01t011 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t012/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t012/TestDescription.java index 07343e90dee..8ba88e69503 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t012/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t012/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -67,7 +67,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t012=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t012 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t013/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t013/TestDescription.java index f4429774bae..1efb0b9c76a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t013/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t013/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -66,7 +66,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t013=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t013 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t014/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t014/TestDescription.java index e1b167bb075..3efa92379a0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t014/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t014/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -65,7 +65,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t014=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t014 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t015/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t015/TestDescription.java index b0706ebff90..0f65bc68a13 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t015/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t015/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -67,7 +67,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t015=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t015 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t016/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t016/TestDescription.java index 82e7cdd4116..9d9ca1f7a86 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t016/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t016/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -65,7 +65,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t016=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t016 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t017/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t017/TestDescription.java index e994da7cc8b..6c14e8f5fde 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t017/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t017/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -67,7 +67,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t017=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t017 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t018/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t018/TestDescription.java index a9d0f427e25..2fef2b9a1a2 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t018/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t018/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -69,7 +69,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t018=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t018 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t019/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t019/TestDescription.java index dc780b1eeb1..aaa52eaf4db 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t019/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t019/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -68,7 +68,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t019=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t019 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t020/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t020/TestDescription.java index 5d8d4e46bbd..b157d4a5f4a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t020/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t020/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -51,7 +51,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t020=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t020 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t021/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t021/TestDescription.java index 6def75ca787..1a5a22f90e1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t021/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t021/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -51,7 +51,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm01t021=-waittime=5 * nsk.jvmti.scenarios.capability.CM01.cm01t021 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM02/cm02t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM02/cm02t001/TestDescription.java index 082a6373df0..a531635944f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM02/cm02t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM02/cm02t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -59,7 +59,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:cm02t001=-waittime=5 * nsk.jvmti.scenarios.capability.CM02.cm02t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM03/cm03t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM03/cm03t001/TestDescription.java index 6ef4dc52a2a..0e04136a78c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM03/cm03t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM03/cm03t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -57,7 +57,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure cm03t001 is compiled with full debug info * @build nsk.jvmti.scenarios.capability.CM03.cm03t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC01/tc01t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC01/tc01t001/TestDescription.java index 130943cb3a3..fc71be4a833 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC01/tc01t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC01/tc01t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:tc01t001=-waittime=5 * nsk.jvmti.scenarios.contention.TC01.tc01t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC02/tc02t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC02/tc02t001/TestDescription.java index 8f2c70b564f..952208fd8d2 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC02/tc02t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC02/tc02t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:tc02t001=-waittime=5 * nsk.jvmti.scenarios.contention.TC02.tc02t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC03/tc03t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC03/tc03t001/TestDescription.java index d96856caad0..7ad4350168e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC03/tc03t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC03/tc03t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:tc03t001=-waittime=5 * nsk.jvmti.scenarios.contention.TC03.tc03t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC03/tc03t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC03/tc03t002/TestDescription.java index 8abb3235af7..8fe5e1aa5d8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC03/tc03t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC03/tc03t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:tc03t002=-waittime=5 * nsk.jvmti.scenarios.contention.TC03.tc03t002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC04/tc04t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC04/tc04t001/TestDescription.java index 0115053e451..a636f9a233d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC04/tc04t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC04/tc04t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:tc04t001=-waittime=5 * nsk.jvmti.scenarios.contention.TC04.tc04t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC05/tc05t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC05/tc05t001/TestDescription.java index c647e360be0..fdcacfc0d6b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC05/tc05t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC05/tc05t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:tc05t001=verbose,waittime=5 * nsk.jvmti.scenarios.contention.TC05.tc05t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM01/em01t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM01/em01t001/TestDescription.java index adaa6f59c06..1e715681909 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM01/em01t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM01/em01t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.events.EM01.em01t001 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM01/em01t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM01/em01t002/TestDescription.java index fe84e22645c..1fb2384b4f1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM01/em01t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM01/em01t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.events.EM01.em01t002 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t001/TestDescription.java index bfbaaaee04b..7abe2ac8bbc 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -68,7 +68,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.events.EM02.em02t001 * @run main/othervm/native ExecDriver --java * -agentlib:em02t001=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t002/TestDescription.java index 710cc57793c..f6e31c816e4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t002/TestDescription.java @@ -71,7 +71,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:em02t002=-waittime=5 * -XX:-UseGCOverheadLimit diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t003/TestDescription.java index 793bf8ccfe7..ed173bf95e3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t003/TestDescription.java @@ -68,7 +68,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.events.EM02.em02t003 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t004/TestDescription.java index 5e95d3d9383..dc3414104c5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -68,7 +68,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:em02t004=-waittime=5 * nsk.jvmti.scenarios.events.EM02.em02t004 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t005/TestDescription.java index 71e39c40b8c..5e8b186fe9d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t005/TestDescription.java @@ -61,7 +61,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.events.EM02.em02t005 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t006/TestDescription.java index b82eeece897..dacf53b0994 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t006/TestDescription.java @@ -60,7 +60,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:em02t006=-waittime=5 * -XX:-UseGCOverheadLimit diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t007/TestDescription.java index fd118c79dd8..05c255808f5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -59,7 +59,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:em02t007=-waittime=5 * nsk.jvmti.scenarios.events.EM02.em02t007 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t008/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t008/TestDescription.java index d71e62b781a..bf743e31486 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t008/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t008/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -59,7 +59,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.events.EM02.em02t008 * @run main/othervm/native ExecDriver --java * -agentlib:em02t008=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t009/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t009/TestDescription.java index 85b474a539f..c992b157844 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t009/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t009/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:em02t009=-waittime=5 * nsk.jvmti.scenarios.events.EM02.em02t009 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t010/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t010/TestDescription.java index 2ed0a80ed2c..c3ad87a908a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t010/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t010/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -59,7 +59,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:em02t010=-waittime=5 * nsk.jvmti.scenarios.events.EM02.em02t010 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t011/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t011/TestDescription.java index d7e062f9331..7518d9f9cb3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t011/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t011/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:em02t011=-waittime=5 * nsk.jvmti.scenarios.events.EM02.em02t011 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t012/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t012/TestDescription.java index 1eb6cfbbbbe..91dedd3d391 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t012/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM02/em02t012/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -59,7 +59,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:em02t012=-waittime=5 * nsk.jvmti.scenarios.events.EM02.em02t012 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM04/em04t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM04/em04t001/TestDescription.java index 4e1eb9ac64f..875f64c5586 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM04/em04t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM04/em04t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:em04t001=-waittime=5 * nsk.jvmti.scenarios.events.EM04.em04t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM05/em05t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM05/em05t001/TestDescription.java index 7f98717e51c..9aeb8cfbaed 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM05/em05t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM05/em05t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -51,7 +51,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:em05t001=-waittime=5 * nsk.jvmti.scenarios.events.EM05.em05t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM05/em05t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM05/em05t002/TestDescription.java index 27da64e0fe1..8dc0af43dce 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM05/em05t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM05/em05t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -59,7 +59,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:em05t002=-waittime=5 * nsk.jvmti.scenarios.events.EM05.em05t002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM06/em06t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM06/em06t001/TestDescription.java index 4bb4683e9af..497f146a72b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM06/em06t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM06/em06t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.events.EM06.em06t001 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM07/em07t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM07/em07t001/TestDescription.java index 01b89a7b882..0936ac85bd1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM07/em07t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM07/em07t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:em07t001=-waittime=5 * nsk.jvmti.scenarios.events.EM07.em07t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM07/em07t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM07/em07t002/TestDescription.java index ac8ae75dd4c..11a3251a950 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM07/em07t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM07/em07t002/TestDescription.java @@ -54,7 +54,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.events.EM07.em07t002 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/extension/EX03/ex03t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/extension/EX03/ex03t001/TestDescription.java index c2d6b0666f3..0e63411b94b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/extension/EX03/ex03t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/extension/EX03/ex03t001/TestDescription.java @@ -52,7 +52,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.extension.EX03.ex03t001 * * @comment compile loadclassXX to bin/loadclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF01/gf01t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF01/gf01t001/TestDescription.java index d0dc29d1d30..4c7f10da382 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF01/gf01t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF01/gf01t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:gf01t001=-waittime=5 * nsk.jvmti.scenarios.general_functions.GF01.gf01t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF04/gf04t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF04/gf04t001/TestDescription.java index 100e939df24..dd8c807cdae 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF04/gf04t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF04/gf04t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.share.Consts * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF06/gf06t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF06/gf06t001/TestDescription.java index 14dce374f89..9c97eb34121 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF06/gf06t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF06/gf06t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.general_functions.GF06.gf06t001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t001/TestDriver.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t001/TestDriver.java index 38fb429f0b0..8053a904069 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t001/TestDriver.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t001/TestDriver.java @@ -52,7 +52,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build sun.hotspot.WhiteBox * @run driver ClassFileInstaller sun.hotspot.WhiteBox * @run main/othervm/native diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t002/TestDescription.java index 88de356e171..7d800c5beb8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -51,7 +51,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.general_functions.GF08.gf08t002 * nsk.jvmti.scenarios.general_functions.GF08.gf08t diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t003/TestDescription.java index 767faa5b13b..25956714a38 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -51,7 +51,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.general_functions.GF08.gf08t003 * nsk.jvmti.scenarios.general_functions.GF08.gf08t diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t001/TestDescription.java index fa6ec699165..eb15c9c9443 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.hotswap.HS101.hs101t001 * nsk.share.jvmti.ProfileCollector diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t002/TestDescription.java index eafda40f21d..7a88ee182b0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.hotswap.HS101.hs101t002 * nsk.share.jvmti.ProfileCollector diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t003/TestDescription.java index 1f4a7fd2015..77368a46428 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.hotswap.HS101.hs101t003 * nsk.share.jvmti.ProfileCollector diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t004/TestDescription.java index 9b2461a5bb5..a0485a42a5f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.hotswap.HS101.hs101t004 * nsk.share.jvmti.ProfileCollector diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t005/TestDescription.java index b5750a36812..3699bdcb285 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.hotswap.HS101.hs101t005 * nsk.share.jvmti.ProfileCollector diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t006/TestDescription.java index 5533b15f2e2..9810e828eb1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.hotswap.HS101.hs101t006 * nsk.share.jvmti.ProfileCollector diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t007/TestDescription.java index 1dcd2826ac5..53fb6397aa1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.hotswap.HS101.hs101t007 * nsk.share.jvmti.ProfileCollector diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t008/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t008/TestDescription.java index 744fbe9d98f..f5f074b1d0d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t008/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS101/hs101t008/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.hotswap.HS101.hs101t008 * nsk.share.jvmti.ProfileCollector diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS102/hs102t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS102/hs102t001/TestDescription.java index a5b509e1b52..469847d4763 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS102/hs102t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS102/hs102t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.hotswap.HS102.hs102t001 * nsk.share.jvmti.ProfileCollector diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS102/hs102t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS102/hs102t002/TestDescription.java index eb9d9454263..84c60be249c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS102/hs102t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS102/hs102t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.hotswap.HS102.hs102t002 * nsk.share.jvmti.ProfileCollector diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS103/hs103t002/hs103t002.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS103/hs103t002/hs103t002.java index 1cb57fd025f..5202dae476f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS103/hs103t002/hs103t002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS103/hs103t002/hs103t002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -33,7 +33,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS103.hs103t002.hs103t002 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS104/hs104t001/hs104t001.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS104/hs104t001/hs104t001.java index 25ddd816cb6..87f153511ec 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS104/hs104t001/hs104t001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS104/hs104t001/hs104t001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -33,7 +33,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS104.hs104t001.hs104t001 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS104/hs104t002/hs104t002.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS104/hs104t002/hs104t002.java index 35cafdf1e8f..6094caab16f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS104/hs104t002/hs104t002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS104/hs104t002/hs104t002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS104.hs104t002.hs104t002 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t001/TestDescription.java index abf1ace9a26..65fcb41bea5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -62,7 +62,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS201.hs201t001 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t002/TestDescription.java index cff920a9ebf..0a395c68316 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -62,7 +62,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS201.hs201t002 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t003/TestDescription.java index a1c68147def..ba9e7065978 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -53,7 +53,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS201.hs201t003 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS202/hs202t001/hs202t001.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS202/hs202t001/hs202t001.java index 18bed3e5bd9..0f88038028a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS202/hs202t001/hs202t001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS202/hs202t001/hs202t001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS202.hs202t001.hs202t001 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS202/hs202t002/hs202t002.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS202/hs202t002/hs202t002.java index 28148378db4..d77ddd75d9a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS202/hs202t002/hs202t002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS202/hs202t002/hs202t002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS202.hs202t002.hs202t002 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t001/hs203t001.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t001/hs203t001.java index 36f3f99b200..046f7c7e038 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t001/hs203t001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t001/hs203t001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS203.hs203t001.hs203t001 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t002/hs203t002.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t002/hs203t002.java index 7e348a10c1d..bf450873901 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t002/hs203t002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t002/hs203t002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS203.hs203t002.hs203t002 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t003/hs203t003.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t003/hs203t003.java index 8c2c94177dd..cc5cbb01a12 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t003/hs203t003.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t003/hs203t003.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS203.hs203t003.hs203t003 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t004/hs203t004.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t004/hs203t004.java index 5cf63bf0515..9d69fe1b783 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t004/hs203t004.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t004/hs203t004.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS203.hs203t004.hs203t004 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t001/hs204t001.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t001/hs204t001.java index 911c7f02fd2..e14618274ce 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t001/hs204t001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t001/hs204t001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.hotswap.HS204.hs204t001.hs204t001 * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t002/hs204t002.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t002/hs204t002.java index a835e713933..897c6434ddc 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t002/hs204t002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t002/hs204t002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS204.hs204t002.hs204t002 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t003/hs204t003.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t003/hs204t003.java index f8862c95f95..3651614b27a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t003/hs204t003.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t003/hs204t003.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS204.hs204t003.hs204t003 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t004/hs204t004.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t004/hs204t004.java index 6edec044752..962a1a26697 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t004/hs204t004.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t004/hs204t004.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS204.hs204t004.hs204t004 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t001/hs301t001.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t001/hs301t001.java index c0615e53b04..66c55e1eb9d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t001/hs301t001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t001/hs301t001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS301.hs301t001.hs301t001 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t002/hs301t002.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t002/hs301t002.java index cb55e22b286..a07081ee03e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t002/hs301t002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t002/hs301t002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS301.hs301t002.hs301t002 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t003/hs301t003.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t003/hs301t003.java index dc6a335362e..d5bd44b0c90 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t003/hs301t003.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t003/hs301t003.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS301.hs301t003.hs301t003 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t004/hs301t004.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t004/hs301t004.java index 0082ba18d27..93f673a5fef 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t004/hs301t004.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t004/hs301t004.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS301.hs301t004.hs301t004 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t005/hs301t005.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t005/hs301t005.java index 4ee1b5623a9..2866849389c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t005/hs301t005.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t005/hs301t005.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS301.hs301t005.hs301t005 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t001/hs302t001.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t001/hs302t001.java index 1bd7dbed3c7..f8f3b82b2a8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t001/hs302t001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t001/hs302t001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS302.hs302t001.hs302t001 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t002/hs302t002.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t002/hs302t002.java index ca862b7e339..6e6cb121d0b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t002/hs302t002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t002/hs302t002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS302.hs302t002.hs302t002 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t003/hs302t003.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t003/hs302t003.java index d3786d8d560..1ee6d860e4d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t003/hs302t003.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t003/hs302t003.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS302.hs302t003.hs302t003 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t004/hs302t004.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t004/hs302t004.java index 4ea710714ee..c1c168e2d42 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t004/hs302t004.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t004/hs302t004.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS302.hs302t004.hs302t004 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t005/hs302t005.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t005/hs302t005.java index 2c133dd2442..cc419a7d5ea 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t005/hs302t005.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t005/hs302t005.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS302.hs302t005.hs302t005 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t006/hs302t006.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t006/hs302t006.java index 76901199d59..77cbfa86b58 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t006/hs302t006.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t006/hs302t006.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS302.hs302t006.hs302t006 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t007/hs302t007.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t007/hs302t007.java index bc51348266a..f98886e2b1d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t007/hs302t007.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t007/hs302t007.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS302.hs302t007.hs302t007 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t008/hs302t008.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t008/hs302t008.java index 2fcac45ef52..8e1398f76e8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t008/hs302t008.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t008/hs302t008.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS302.hs302t008.hs302t008 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t009/hs302t009.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t009/hs302t009.java index f974eef4633..b570e5b86de 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t009/hs302t009.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t009/hs302t009.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS302.hs302t009.hs302t009 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t010/hs302t010.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t010/hs302t010.java index 09e534af383..0b8296e5ef1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t010/hs302t010.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t010/hs302t010.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS302.hs302t010.hs302t010 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t011/hs302t011.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t011/hs302t011.java index 24f0843139b..0a8a08acef2 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t011/hs302t011.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t011/hs302t011.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS302.hs302t011.hs302t011 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t012/hs302t012.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t012/hs302t012.java index 1495b32d5ed..40995119046 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t012/hs302t012.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t012/hs302t012.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -29,7 +29,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.scenarios.hotswap.HS302.hs302t012.hs302t012 * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI01/ji01t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI01/ji01t001/TestDescription.java index ccd2da17355..1f4de058692 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI01/ji01t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI01/ji01t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:ji01t001 nsk.jvmti.scenarios.jni_interception.JI01.ji01t001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t001/TestDescription.java index bfeb5fa2cab..30259b2953f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:ji03t001 nsk.jvmti.scenarios.jni_interception.JI03.ji03t001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t002/TestDescription.java index e156692dfd2..8512b4cf999 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:ji03t002 nsk.jvmti.scenarios.jni_interception.JI03.ji03t002 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t003/TestDescription.java index ae4e8db99c1..85c2f5eccaa 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:ji03t003 nsk.jvmti.scenarios.jni_interception.JI03.ji03t003 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t004/TestDescription.java index 3246ea35fef..6191c870b4d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:ji03t004 nsk.jvmti.scenarios.jni_interception.JI03.ji03t004 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI05/ji05t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI05/ji05t001/TestDescription.java index 0e567c50bf3..224bbf98cd9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI05/ji05t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI05/ji05t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ji05t001=-waittime=5 * nsk.jvmti.scenarios.jni_interception.JI05.ji05t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI06/ji06t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI06/ji06t001/TestDescription.java index 4bbd8d185d8..91c8e2e2d22 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI06/ji06t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI06/ji06t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ji06t001=-waittime=5 * nsk.jvmti.scenarios.jni_interception.JI06.ji06t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA01/ma01t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA01/ma01t001/TestDescription.java index d6862f27a29..abc1a0ffd8f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA01/ma01t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA01/ma01t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.multienv.MA01.ma01t001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA02/ma02t001/TestDriver.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA02/ma02t001/TestDriver.java index 9066be1ed0b..2aae25104fe 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA02/ma02t001/TestDriver.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA02/ma02t001/TestDriver.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native TestDriver */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA03/ma03t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA03/ma03t001/TestDescription.java index 5f3e2cf26fd..e5d60e0acaf 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA03/ma03t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA03/ma03t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma03t001=-waittime=5 * -agentlib:ma03t001a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA04/ma04t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA04/ma04t001/TestDescription.java index a57c76f9a20..94c5d91ec02 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA04/ma04t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA04/ma04t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma04t001=-waittime=5 * -agentlib:ma04t001a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA04/ma04t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA04/ma04t002/TestDescription.java index c051e394690..c7bab45efb6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA04/ma04t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA04/ma04t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma04t002=-waittime=5 * -agentlib:ma04t002a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA04/ma04t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA04/ma04t003/TestDescription.java index 2464da64af8..94d8e204034 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA04/ma04t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA04/ma04t003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma04t003=-waittime=5 * -agentlib:ma04t003a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA05/ma05t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA05/ma05t001/TestDescription.java index 081f58d619d..eebd55315a0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA05/ma05t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA05/ma05t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma05t001=-waittime=5 * -agentlib:ma05t001a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA06/ma06t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA06/ma06t001/TestDescription.java index 333572a6177..060b8a33fab 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA06/ma06t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA06/ma06t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma06t001=-waittime=5 * -agentlib:ma06t001a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA07/ma07t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA07/ma07t001/TestDescription.java index fd9ef9cf870..0c936b0a43d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA07/ma07t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA07/ma07t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma07t001=-waittime=5 * -agentlib:ma07t001a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA08/ma08t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA08/ma08t001/TestDescription.java index b745ade8f74..c9ff3d81891 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA08/ma08t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA08/ma08t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma08t001=-waittime=5 * -agentlib:ma08t001a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t001/TestDescription.java index 8c5e62e10ad..dc302cec769 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma10t001=-waittime=5 * -agentlib:ma10t001a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t002/TestDescription.java index a65ff78c3f0..c3a77a2af18 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma10t002=-waittime=5 * -agentlib:ma10t002a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t003/TestDescription.java index 28f23400677..4f0d9097b0f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma10t003=-waittime=5 * -agentlib:ma10t003a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t004/TestDescription.java index ce812301152..43032b7a9d7 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma10t004=-waittime=5 * -agentlib:ma10t004a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t005/TestDescription.java index ed45ca05e71..a2e05d64ff8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma10t005=-waittime=5 * -agentlib:ma10t005a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t006/TestDescription.java index 9ab575a033b..a3d9b81ec19 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma10t006=-waittime=5 * -agentlib:ma10t006a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t007/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t007/TestDescription.java index c9cebd8b845..039e8f0554c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t007/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t007/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma10t007=-waittime=5 * -agentlib:ma10t007a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t008/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t008/TestDescription.java index dd78ac76fa6..0a354999e7e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t008/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/multienv/MA10/ma10t008/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:ma10t008=-waittime=5 * -agentlib:ma10t008a=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP01/sp01t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP01/sp01t001/TestDescription.java index 65adcdd85c8..ce5943ac02d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP01/sp01t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP01/sp01t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp01t001=-waittime=5 * nsk.jvmti.scenarios.sampling.SP01.sp01t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP01/sp01t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP01/sp01t002/TestDescription.java index 6c73d2b4ecf..c8003af65ee 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP01/sp01t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP01/sp01t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -57,7 +57,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp01t002=-waittime=5 * nsk.jvmti.scenarios.sampling.SP01.sp01t002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP01/sp01t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP01/sp01t003/TestDescription.java index 06de41be053..99509bf5107 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP01/sp01t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP01/sp01t003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp01t003=-waittime=5 * nsk.jvmti.scenarios.sampling.SP01.sp01t003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t001/TestDescription.java index e3da8ecdf17..1b2ef3a3e88 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -57,7 +57,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp02t001=-waittime=5 * nsk.jvmti.scenarios.sampling.SP02.sp02t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t002/TestDescription.java index 2a4edff0abe..62b166f90c5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp02t002=-waittime=5 * nsk.jvmti.scenarios.sampling.SP02.sp02t002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t003/TestDescription.java index a1c052a9d72..6844e2904d3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -61,7 +61,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp02t003=-waittime=5 * nsk.jvmti.scenarios.sampling.SP02.sp02t003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP03/sp03t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP03/sp03t001/TestDescription.java index cd13c3b3ef6..f042c2c988c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP03/sp03t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP03/sp03t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -56,7 +56,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.sampling.SP03.sp03t001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP03/sp03t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP03/sp03t002/TestDescription.java index cbb181a03b4..bffe8e73f54 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP03/sp03t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP03/sp03t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -56,7 +56,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.sampling.SP03.sp03t002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP04/sp04t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP04/sp04t001/TestDescription.java index ca6d0e76487..a40fc00fb7e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP04/sp04t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP04/sp04t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -56,7 +56,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.sampling.SP04.sp04t001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP04/sp04t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP04/sp04t002/TestDescription.java index b23b3f94bea..41efef29d2f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP04/sp04t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP04/sp04t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -56,7 +56,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.scenarios.sampling.SP04.sp04t002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP05/sp05t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP05/sp05t002/TestDescription.java index 31d541c3303..8ecdab67254 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP05/sp05t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP05/sp05t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp05t002=-waittime=5 * nsk.jvmti.scenarios.sampling.SP05.sp05t002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP05/sp05t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP05/sp05t003/TestDescription.java index 9ee6eb4eb99..ecb2cfc59e5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP05/sp05t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP05/sp05t003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp05t003=-waittime=5 * nsk.jvmti.scenarios.sampling.SP05.sp05t003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t001/TestDescription.java index 596da547bce..948cfcedeb1 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -64,7 +64,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp06t001=-waittime=5 * nsk.jvmti.scenarios.sampling.SP06.sp06t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t002/TestDescription.java index 72a062096dd..514facaebc9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -66,7 +66,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp06t002=-waittime=5 * nsk.jvmti.scenarios.sampling.SP06.sp06t002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t003/TestDescription.java index 6fd9671d554..de4d4e4b44f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -68,7 +68,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp06t003=-waittime=5 * nsk.jvmti.scenarios.sampling.SP06.sp06t003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP07/sp07t001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP07/sp07t001/TestDescription.java index ee5cc7f9c53..79ccb9c8e70 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP07/sp07t001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP07/sp07t001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp07t001=-waittime=5 * nsk.jvmti.scenarios.sampling.SP07.sp07t001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP07/sp07t002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP07/sp07t002/TestDescription.java index 5c30572b481..b722c67d9ec 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP07/sp07t002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP07/sp07t002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:sp07t002=-waittime=5 * nsk.jvmti.scenarios.sampling.SP07.sp07t002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref001/TestDescription.java index 2868391e12d..38eaa4f4195 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -54,7 +54,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.unit.FollowReferences.followref001 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref002/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref002/TestDescription.java index b0be9a3c289..b245d26a94f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref002/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref002/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -55,7 +55,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.unit.FollowReferences.followref002 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref003/TestDescription.java index b74f1e318d6..06552bef682 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -56,7 +56,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.unit.FollowReferences.followref003 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref004/TestDescription.java index fbfc0c67aa6..2d2e0c6d91b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.unit.FollowReferences.followref004 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref005/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref005/TestDescription.java index 17da38e3d90..15ba4489d2b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref005/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref005/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.unit.FollowReferences.followref005 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref006/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref006/TestDescription.java index 6b166a89187..6730c8b4aba 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref006/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/FollowReferences/followref006/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build ExecDriver * nsk.jvmti.unit.FollowReferences.followref006 * @run main/othervm/native PropertyResolvingWrapper ExecDriver --java diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretbase/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretbase/TestDescription.java index 12753aaa23c..032b45df95a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretbase/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretbase/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:earlyretbase nsk.jvmti.unit.ForceEarlyReturn.earlyretbase */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretfp/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretfp/TestDescription.java index 3c97862a95c..24fd5020608 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretfp/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretfp/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure earlyretfp is compiled with full debug info * @build nsk.jvmti.unit.ForceEarlyReturn.earlyretfp diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretint/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretint/TestDescription.java index bd9c80cbac2..0ff2db8ab86 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretint/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretint/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure earlyretint is compiled with full debug info * @build nsk.jvmti.unit.ForceEarlyReturn.earlyretint diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretlong/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretlong/TestDescription.java index b849ed322df..2c34e05f7dc 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretlong/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretlong/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure earlyretlong is compiled with full debug info * @build nsk.jvmti.unit.ForceEarlyReturn.earlyretlong diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretobj/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretobj/TestDescription.java index d48a68b1a49..d2b96aeebc4 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretobj/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretobj/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure earlyretobj is compiled with full debug info * @build nsk.jvmti.unit.ForceEarlyReturn.earlyretobj diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretstr/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretstr/TestDescription.java index 0f70ebc74ec..b2d51df8e69 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretstr/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretstr/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure earlyretstr is compiled with full debug info * @build nsk.jvmti.unit.ForceEarlyReturn.earlyretstr diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretvoid/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretvoid/TestDescription.java index 5dd448bda61..d29e99342b6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretvoid/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretvoid/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure earlyretvoid is compiled with full debug info * @build nsk.jvmti.unit.ForceEarlyReturn.earlyretvoid diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetAllStackTraces/getallstktr001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetAllStackTraces/getallstktr001/TestDescription.java index 761bed35814..f760ea535df 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetAllStackTraces/getallstktr001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetAllStackTraces/getallstktr001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -Xcheck:jni * -agentlib:getallstktr001=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetConstantPool/getcpool001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetConstantPool/getcpool001/TestDescription.java index 851bbacc96b..17c854ec209 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetConstantPool/getcpool001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetConstantPool/getcpool001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:getcpool001 nsk.jvmti.unit.GetConstantPool.getcpool001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLineNumberTable/linetab004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLineNumberTable/linetab004/TestDescription.java index aebdcebacbf..72ae9bb4e05 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLineNumberTable/linetab004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLineNumberTable/linetab004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure linetab004 is compiled with no debug info * @build nsk.jvmti.unit.GetLineNumberTable.linetab004 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLocalVariable/getlocal003/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLocalVariable/getlocal003/TestDescription.java index bd1d588ba79..7402b34c346 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLocalVariable/getlocal003/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLocalVariable/getlocal003/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure getlocal003 is compiled with full debug info * @build nsk.jvmti.unit.GetLocalVariable.getlocal003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLocalVariable/getlocal004/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLocalVariable/getlocal004/TestDescription.java index 5981da33874..3367abc4065 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLocalVariable/getlocal004/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLocalVariable/getlocal004/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * * @comment make sure getlocal004 is compiled with no debug info * @build nsk.jvmti.unit.GetLocalVariable.getlocal004 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/IsSynthetic/issynth001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/IsSynthetic/issynth001/TestDescription.java index fba86f7c799..1b2b6cc905f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/IsSynthetic/issynth001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/IsSynthetic/issynth001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:IsSyntheticIssynth001 nsk.jvmti.unit.IsSynthetic.issynth001 */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/MethodBind/JvmtiTest/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/MethodBind/JvmtiTest/TestDescription.java index 496692037b1..545186feab9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/MethodBind/JvmtiTest/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/MethodBind/JvmtiTest/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:MethodBind=-waittime=5 nsk.jvmti.unit.MethodBind.JvmtiTest */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/OnUnload/JvmtiTest/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/OnUnload/JvmtiTest/TestDescription.java index ccc583a4269..a83af909cfa 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/OnUnload/JvmtiTest/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/OnUnload/JvmtiTest/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -34,7 +34,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:OnUnload=-waittime=5 nsk.jvmti.unit.OnUnload.JvmtiTest */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/StackTrace/JvmtiTest/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/StackTrace/JvmtiTest/TestDescription.java index 3a1fd9e7dbb..309120b6010 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/StackTrace/JvmtiTest/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/StackTrace/JvmtiTest/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -35,7 +35,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:StackTrace=-waittime=5 nsk.jvmti.unit.StackTrace.JvmtiTest */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/agentthr/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/agentthr/TestDescription.java index cf3018336f0..c65dc75d1e7 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/agentthr/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/agentthr/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -33,7 +33,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:agentthr=-waittime=5 nsk.jvmti.unit.agentthr */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/clsldrclss00x/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/clsldrclss00x/TestDescription.java index 76b7b4dc2c6..8472be08f1e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/clsldrclss00x/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/clsldrclss00x/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -33,7 +33,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:clsldrclss00x=-waittime=5 nsk.jvmti.unit.clsldrclss00x */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/events/redefineCFLH/JvmtiTest/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/events/redefineCFLH/JvmtiTest/TestDescription.java index 484669f4864..4c943c6ce8b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/events/redefineCFLH/JvmtiTest/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/events/redefineCFLH/JvmtiTest/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -34,7 +34,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.unit.events.redefineCFLH.JvmtiTest * nsk.jvmti.unit.events.redefineCFLH.JvmtiTestr * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/extmech/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/extmech/TestDescription.java index ad439f511af..28c55678ae5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/extmech/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/extmech/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:extmech=-waittime=5 nsk.jvmti.unit.extmech */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/AddToBootstrapClassLoaderSearch/JvmtiTest/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/AddToBootstrapClassLoaderSearch/JvmtiTest/TestDescription.java index 90ee843f2e4..9e495167e9d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/AddToBootstrapClassLoaderSearch/JvmtiTest/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/AddToBootstrapClassLoaderSearch/JvmtiTest/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.unit.functions.AddToBootstrapClassLoaderSearch.JvmtiTest * * @comment compile newclassXX to bin/newclassXX diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/Dispose/JvmtiTest/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/Dispose/JvmtiTest/TestDescription.java index 90d58da9af6..f38f90a57ac 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/Dispose/JvmtiTest/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/Dispose/JvmtiTest/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:Dispose=-waittime=5 * nsk.jvmti.unit.functions.Dispose.JvmtiTest diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/ForceGarbageCollection/gc/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/ForceGarbageCollection/gc/TestDescription.java index a530819f2e1..e4cb8fd60be 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/ForceGarbageCollection/gc/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/ForceGarbageCollection/gc/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:gc=-waittime=5 * nsk.jvmti.unit.functions.ForceGarbageCollection.gc diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/environment/JvmtiTest/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/environment/JvmtiTest/TestDescription.java index 4ed19222212..2337f120501 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/environment/JvmtiTest/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/environment/JvmtiTest/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -34,7 +34,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:environment=-waittime=5 * nsk.jvmti.unit.functions.environment.JvmtiTest diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/nosuspendMonitorInfo/JvmtiTest/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/nosuspendMonitorInfo/JvmtiTest/TestDescription.java index a4a646029f2..fadebb44279 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/nosuspendMonitorInfo/JvmtiTest/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/nosuspendMonitorInfo/JvmtiTest/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:nosuspendMonitorInfo=-waittime=5 * nsk.jvmti.unit.functions.nosuspendMonitorInfo.JvmtiTest diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/nosuspendStackTrace/JvmtiTest/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/nosuspendStackTrace/JvmtiTest/TestDescription.java index 53c422645fb..b5ee6afa5db 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/nosuspendStackTrace/JvmtiTest/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/nosuspendStackTrace/JvmtiTest/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native * -agentlib:nosuspendStackTrace=-waittime=5 * nsk.jvmti.unit.functions.nosuspendStackTrace.JvmtiTest diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/rawmonitor/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/rawmonitor/TestDescription.java index b2d6db6b9b3..fca56efa935 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/rawmonitor/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/rawmonitor/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.unit.functions.rawmonitor * @run main/othervm/native ExecDriver --java * -agentlib:rawmonitor=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/BasicIterationTests/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/BasicIterationTests/TestDescription.java index 811393ccaea..3d34a5abdbf 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/BasicIterationTests/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/BasicIterationTests/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -34,7 +34,6 @@ * COMMENTS * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:Heap=-waittime=5 nsk.jvmti.unit.heap.BasicIterationTests */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/BasicTagTests/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/BasicTagTests/TestDescription.java index 95a684e6805..bcf9915987c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/BasicTagTests/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/BasicTagTests/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -33,7 +33,6 @@ * COMMENTS * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:Heap=-waittime=5 nsk.jvmti.unit.heap.BasicTagTests */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/GetWithTests/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/GetWithTests/TestDescription.java index db2f074faee..1ec0dca1dc9 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/GetWithTests/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/GetWithTests/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -33,7 +33,6 @@ * COMMENTS * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:Heap=-waittime=5 nsk.jvmti.unit.heap.GetWithTests */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/HeapWalkTests/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/HeapWalkTests/TestDescription.java index 8a2ed572150..88679482454 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/HeapWalkTests/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/HeapWalkTests/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -35,7 +35,6 @@ * COMMENTS * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jvmti.unit.heap.HeapWalkTests * @run main/othervm/native ExecDriver --java * -agentlib:Heap=-waittime=5 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/ObjectFreeTests/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/ObjectFreeTests/TestDescription.java index 02a551cf813..e9e6f5f4496 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/ObjectFreeTests/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/ObjectFreeTests/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * COMMENTS * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:Heap=-waittime=5 nsk.jvmti.unit.heap.ObjectFreeTests */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/ObjectSizeTests/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/ObjectSizeTests/TestDescription.java index 38004a47451..dc959ce3dba 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/ObjectSizeTests/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heap/ObjectSizeTests/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:Heap=-waittime=5 nsk.jvmti.unit.heap.ObjectSizeTests */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heapref/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heapref/TestDescription.java index 1c5b1c52658..54774fd1973 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heapref/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/heapref/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:heapref=-waittime=5 nsk.jvmti.unit.heapref */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/refignore/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/refignore/TestDescription.java index 57b1dd76c4a..49ff46ac89c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/refignore/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/refignore/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:refignore=-waittime=5 nsk.jvmti.unit.refignore */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/setNullVMInit/JvmtiTest/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/setNullVMInit/JvmtiTest/TestDescription.java index 37dba164830..6886d2b3ec6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/setNullVMInit/JvmtiTest/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/setNullVMInit/JvmtiTest/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:setNullVMInit=-waittime=5 nsk.jvmti.unit.setNullVMInit.JvmtiTest */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/timers/JvmtiTest/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/timers/JvmtiTest/TestDescription.java index 4541d236df9..1937e6abfa3 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/timers/JvmtiTest/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/timers/JvmtiTest/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:timers=waittime=5 nsk.jvmti.unit.timers.JvmtiTest */ diff --git a/test/hotspot/jtreg/vmTestbase/nsk/share/ExceptionCheckingJniEnv/exceptionjni001/TestDescription.java b/test/hotspot/jtreg/vmTestbase/nsk/share/ExceptionCheckingJniEnv/exceptionjni001/TestDescription.java index 912b193497b..7d0f7193f45 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/share/ExceptionCheckingJniEnv/exceptionjni001/TestDescription.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/share/ExceptionCheckingJniEnv/exceptionjni001/TestDescription.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2018, 2019, Google and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * @@ -32,7 +32,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @run main/othervm/native -agentlib:exceptionjni001 nsk.share.ExceptionCheckingJniEnv.exceptionjni001 */ From e07ad838b50b7c848cb9a2ea9e7567c9a2f7aa20 Mon Sep 17 00:00:00 2001 From: Igor Ignatyev Date: Wed, 15 Jul 2020 11:34:34 -0700 Subject: [PATCH 08/13] 8249040: clean up FileInstaller $test.src $cwd in vmTestbase_nsk_jdb tests Reviewed-by: dholmes --- .../caught_exception002/caught_exception002.java | 3 +-- .../nsk/jdb/classes/classes001/classes001.java | 3 +-- .../jdb/classpath/classpath001/classpath001.java | 3 +-- .../nsk/jdb/clear/clear002/clear002.java | 3 +-- .../nsk/jdb/clear/clear003/clear003.java | 3 +-- .../nsk/jdb/clear/clear004/clear004.java | 3 +-- .../vmTestbase/nsk/jdb/down/down002/down002.java | 3 +-- .../vmTestbase/nsk/jdb/dump/dump002/dump002.java | 3 +-- .../vmTestbase/nsk/jdb/eval/eval001/eval001.java | 3 +-- .../nsk/jdb/exclude/exclude001/exclude001.java | 3 +-- .../nsk/jdb/fields/fields001/fields001.java | 3 +-- .../nsk/jdb/hidden_class/hc001/hc001.java | 1 - .../nsk/jdb/ignore/ignore001/ignore001.java | 3 +-- .../jdb/interrupt/interrupt001/interrupt001.java | 3 +-- .../vmTestbase/nsk/jdb/kill/kill001/kill001.java | 3 +-- .../vmTestbase/nsk/jdb/kill/kill002/kill002.java | 3 +-- .../nsk/jdb/klass/class001/class001.java | 3 +-- .../nsk/jdb/locals/locals002/locals002.java | 3 +-- .../nsk/jdb/methods/methods002/methods002.java | 3 +-- .../nsk/jdb/monitor/monitor001/monitor001.java | 3 +-- .../nsk/jdb/monitor/monitor002/monitor002.java | 3 +-- .../vmTestbase/nsk/jdb/next/next001/next001.java | 3 +-- .../options/connect/connect001/connect001.java | 3 +-- .../options/connect/connect002/connect002.java | 3 +-- .../options/connect/connect003/connect003.java | 3 +-- .../options/connect/connect004/connect004.java | 3 +-- .../options/connect/connect005/connect005.java | 3 +-- .../listconnectors001/listconnectors001.java | 3 +-- .../vmTestbase/nsk/jdb/pop/pop001/pop001.java | 3 +-- .../pop_exception001/pop_exception001.java | 3 +-- .../nsk/jdb/print/print002/print002.java | 3 +-- .../vmTestbase/nsk/jdb/read/read001/read001.java | 8 ++++---- .../jdb/redefine/redefine001/redefine001.java | 3 +-- .../nsk/jdb/reenter/reenter001/reenter001.java | 3 +-- .../nsk/jdb/regression/b4689395/b4689395.java | 3 +-- .../nsk/jdb/resume/resume002/resume002.java | 3 +-- .../vmTestbase/nsk/jdb/run/run002/run002.java | 3 +-- .../vmTestbase/nsk/jdb/set/set001/set001.java | 3 +-- .../vmTestbase/nsk/jdb/set/set002/set002.java | 3 +-- .../vmTestbase/nsk/jdb/step/step002/step002.java | 3 +-- .../nsk/jdb/step_up/step_up001/step_up001.java | 3 +-- .../nsk/jdb/stop_at/stop_at002/stop_at002.java | 3 +-- .../nsk/jdb/stop_at/stop_at003/stop_at003.java | 3 +-- .../nsk/jdb/stop_in/stop_in002/stop_in002.java | 3 +-- .../nsk/jdb/suspend/suspend001/suspend001.java | 3 +-- .../nsk/jdb/thread/thread002/thread002.java | 3 +-- .../threadgroup002/threadgroup002.java | 3 +-- .../threadgroups002/threadgroups002.java | 3 +-- .../nsk/jdb/threads/threads002/threads002.java | 3 +-- .../nsk/jdb/trace/trace001/trace001.java | 3 +-- .../uncaught_exception002.java | 3 +-- .../jdb/unmonitor/unmonitor001/unmonitor001.java | 3 +-- .../nsk/jdb/untrace/untrace001/untrace001.java | 3 +-- .../nsk/jdb/unwatch/unwatch001/unwatch001.java | 3 +-- .../nsk/jdb/unwatch/unwatch002/unwatch002.java | 3 +-- .../jtreg/vmTestbase/nsk/jdb/up/up002/up002.java | 3 +-- .../vmTestbase/nsk/jdb/use/use001/use001.java | 16 ++++++++-------- .../nsk/jdb/watch/watch001/watch001.java | 3 +-- .../nsk/jdb/watch/watch002/watch002.java | 3 +-- .../nsk/jdb/where/where004/where004.java | 3 +-- .../nsk/jdb/where/where005/where005.java | 3 +-- .../nsk/jdb/where/where006/where006.java | 3 +-- .../nsk/jdb/wherei/wherei001/wherei001.java | 3 +-- 63 files changed, 72 insertions(+), 133 deletions(-) diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/caught_exception/caught_exception002/caught_exception002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/caught_exception/caught_exception002/caught_exception002.java index 51752fcd949..7ab8ef9ad8c 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/caught_exception/caught_exception002/caught_exception002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/caught_exception/caught_exception002/caught_exception002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.caught_exception.caught_exception002.caught_exception002 * nsk.jdb.caught_exception.caught_exception002.caught_exception002a * @run main/othervm PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/classes/classes001/classes001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/classes/classes001/classes001.java index f72e3bbb56a..2e2f4e266da 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/classes/classes001/classes001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/classes/classes001/classes001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.classes.classes001.classes001 * nsk.jdb.classes.classes001.classes001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.classes.classes001.classes001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/classpath/classpath001/classpath001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/classpath/classpath001/classpath001.java index 6d522235ab2..af77f08807a 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/classpath/classpath001/classpath001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/classpath/classpath001/classpath001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -35,7 +35,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.classpath.classpath001.classpath001 * nsk.jdb.classpath.classpath001.classpath001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.classpath.classpath001.classpath001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear002/clear002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear002/clear002.java index aa7c4b5e3a7..5590c771115 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear002/clear002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear002/clear002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -37,7 +37,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.clear.clear002.clear002 * nsk.jdb.clear.clear002.clear002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.clear.clear002.clear002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear003/clear003.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear003/clear003.java index b504fbff6b8..b7f0830b766 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear003/clear003.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear003/clear003.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -38,7 +38,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.clear.clear003.clear003 * nsk.jdb.clear.clear003.clear003a * @run main/othervm PropertyResolvingWrapper nsk.jdb.clear.clear003.clear003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear004/clear004.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear004/clear004.java index f2dc5d02216..696139c514b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear004/clear004.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/clear/clear004/clear004.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.clear.clear004.clear004 * nsk.jdb.clear.clear004.clear004a * @run main/othervm PropertyResolvingWrapper nsk.jdb.clear.clear004.clear004 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/down/down002/down002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/down/down002/down002.java index 8ecd6ad7b5f..1372b2d2eed 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/down/down002/down002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/down/down002/down002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.down.down002.down002 * nsk.jdb.down.down002.down002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.down.down002.down002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/dump/dump002/dump002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/dump/dump002/dump002.java index 9c014906e6f..b7e62ed0321 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/dump/dump002/dump002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/dump/dump002/dump002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.dump.dump002.dump002 * nsk.jdb.dump.dump002.dump002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.dump.dump002.dump002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/eval/eval001/eval001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/eval/eval001/eval001.java index d32c51d12a0..df0fb5c40e8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/eval/eval001/eval001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/eval/eval001/eval001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.eval.eval001.eval001 * * @comment make sure eval001a is compiled w/ full debug info diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/exclude/exclude001/exclude001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/exclude/exclude001/exclude001.java index 006530ba33e..2f59ea05ccf 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/exclude/exclude001/exclude001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/exclude/exclude001/exclude001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -58,7 +58,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.exclude.exclude001.exclude001 * nsk.jdb.exclude.exclude001.exclude001a * @run main/othervm/timeout=600 PropertyResolvingWrapper nsk.jdb.exclude.exclude001.exclude001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/fields/fields001/fields001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/fields/fields001/fields001.java index a5427eddab1..fdbf97e0612 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/fields/fields001/fields001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/fields/fields001/fields001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.fields.fields001.fields001 * nsk.jdb.fields.fields001.fields001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.fields.fields001.fields001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/hidden_class/hc001/hc001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/hidden_class/hc001/hc001.java index 4756a7a7e79..d2544a80c38 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/hidden_class/hc001/hc001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/hidden_class/hc001/hc001.java @@ -29,7 +29,6 @@ * /test/lib * @modules jdk.jdi * jdk.jdwp.agent - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.hidden_class.hc001.hc001 * nsk.jdb.hidden_class.hc001.hc001a * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/ignore/ignore001/ignore001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/ignore/ignore001/ignore001.java index fea68da7591..9763bcd47fd 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/ignore/ignore001/ignore001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/ignore/ignore001/ignore001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.ignore.ignore001.ignore001 * nsk.jdb.ignore.ignore001.ignore001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.ignore.ignore001.ignore001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/interrupt/interrupt001/interrupt001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/interrupt/interrupt001/interrupt001.java index 37263dad6eb..47162adfedc 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/interrupt/interrupt001/interrupt001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/interrupt/interrupt001/interrupt001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.interrupt.interrupt001.interrupt001 * nsk.jdb.interrupt.interrupt001.interrupt001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.interrupt.interrupt001.interrupt001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/kill/kill001/kill001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/kill/kill001/kill001.java index 63f84f8d2af..dbce2558a5e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/kill/kill001/kill001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/kill/kill001/kill001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.kill.kill001.kill001 * nsk.jdb.kill.kill001.kill001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.kill.kill001.kill001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/kill/kill002/kill002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/kill/kill002/kill002.java index 2557e1ee32f..60b59e2a337 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/kill/kill002/kill002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/kill/kill002/kill002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.kill.kill002.kill002 * nsk.jdb.kill.kill002.kill002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.kill.kill002.kill002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/klass/class001/class001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/klass/class001/class001.java index 25b73d980ee..b291ff0860b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/klass/class001/class001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/klass/class001/class001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.klass.class001.class001 * nsk.jdb.klass.class001.class001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.klass.class001.class001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/locals/locals002/locals002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/locals/locals002/locals002.java index f033e895eb0..3212484271b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/locals/locals002/locals002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/locals/locals002/locals002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.locals.locals002.locals002 * * @comment make sure locals002a is compiled w/ full debug info diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/methods/methods002/methods002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/methods/methods002/methods002.java index 3bc88f2dc3b..73a94589da5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/methods/methods002/methods002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/methods/methods002/methods002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.methods.methods002.methods002 * nsk.jdb.methods.methods002.methods002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.methods.methods002.methods002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/monitor/monitor001/monitor001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/monitor/monitor001/monitor001.java index 6d46a6c9c9c..47c81df9d0f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/monitor/monitor001/monitor001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/monitor/monitor001/monitor001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.monitor.monitor001.monitor001 * nsk.jdb.monitor.monitor001.monitor001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.monitor.monitor001.monitor001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/monitor/monitor002/monitor002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/monitor/monitor002/monitor002.java index 757ae8b061c..b65b195f286 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/monitor/monitor002/monitor002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/monitor/monitor002/monitor002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2019, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.monitor.monitor002.monitor002 * nsk.jdb.monitor.monitor002.monitor002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.monitor.monitor002.monitor002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/next/next001/next001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/next/next001/next001.java index 1a55ad771f7..cf21d2f713d 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/next/next001/next001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/next/next001/next001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.next.next001.next001 * nsk.jdb.next.next001.next001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.next.next001.next001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect001/connect001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect001/connect001.java index d99b036885c..c6fe0bed751 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect001/connect001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect001/connect001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.options.connect.connect001.connect001 * nsk.jdb.options.connect.connect001.connect001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.options.connect.connect001.connect001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect002/connect002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect002/connect002.java index 142ae65bc93..130c2924e19 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect002/connect002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect002/connect002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.options.connect.connect002.connect002 * nsk.jdb.options.connect.connect002.connect002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.options.connect.connect002.connect002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect003/connect003.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect003/connect003.java index ba31fa4de59..f6e3eee7167 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect003/connect003.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect003/connect003.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.options.connect.connect003.connect003 * nsk.jdb.options.connect.connect003.connect003a * @run main/othervm PropertyResolvingWrapper nsk.jdb.options.connect.connect003.connect003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect004/connect004.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect004/connect004.java index b065ca0fa4e..2a715bd6e26 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect004/connect004.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect004/connect004.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.options.connect.connect004.connect004 * nsk.jdb.options.connect.connect004.connect004a * @run main/othervm PropertyResolvingWrapper nsk.jdb.options.connect.connect004.connect004 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect005/connect005.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect005/connect005.java index 261303ee944..066c0414907 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect005/connect005.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/connect/connect005/connect005.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.options.connect.connect005.connect005 * nsk.jdb.options.connect.connect005.connect005a * @run main/othervm PropertyResolvingWrapper nsk.jdb.options.connect.connect005.connect005 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/listconnectors/listconnectors001/listconnectors001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/listconnectors/listconnectors001/listconnectors001.java index f8d48c5728b..b54d1a011c5 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/listconnectors/listconnectors001/listconnectors001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/options/listconnectors/listconnectors001/listconnectors001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2020, 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 @@ -51,7 +51,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.options.listconnectors.listconnectors001.listconnectors001 * @run main/othervm PropertyResolvingWrapper * nsk.jdb.options.listconnectors.listconnectors001.listconnectors001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/pop/pop001/pop001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/pop/pop001/pop001.java index acf83163a2c..1502dc6863f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/pop/pop001/pop001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/pop/pop001/pop001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.pop.pop001.pop001 * nsk.jdb.pop.pop001.pop001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.pop.pop001.pop001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/pop_exception/pop_exception001/pop_exception001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/pop_exception/pop_exception001/pop_exception001.java index c493343aee5..02eb088a74e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/pop_exception/pop_exception001/pop_exception001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/pop_exception/pop_exception001/pop_exception001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2020, 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 @@ -33,7 +33,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.pop_exception.pop_exception001.pop_exception001 * nsk.jdb.pop_exception.pop_exception001.pop_exception001a * @run main/othervm PropertyResolvingWrapper diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/print/print002/print002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/print/print002/print002.java index 70183117f15..a9b5fd6d100 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/print/print002/print002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/print/print002/print002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.print.print002.print002 * * @comment make sure print002a is compiled w/ full debug info diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/read/read001/read001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/read/read001/read001.java index cd53709dd60..a72314fd196 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/read/read001/read001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/read/read001/read001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.read.read001.read001 * * @comment make sure read001a is compiled w/ full debug info @@ -68,6 +67,7 @@ package nsk.jdb.read.read001; import nsk.share.*; import nsk.share.jdb.*; +import jdk.test.lib.Utils; import java.io.*; import java.util.*; @@ -96,7 +96,7 @@ public class read001 extends JdbTest { protected void runCases() { String[] reply; - String workdir = argumentHandler.getWorkDir(); + String srcdir = Utils.TEST_SRC; // stop in lastBreak() method jdb.setBreakpointInMethod(LAST_BREAK); @@ -105,7 +105,7 @@ public class read001 extends JdbTest { // return to testedInstanceMethod() reply = jdb.receiveReplyFor(JdbCommand.step); - String command = JdbCommand.read + workdir + File.separator + SCENARIO_FILE; + String command = JdbCommand.read + srcdir + File.separator + SCENARIO_FILE; int count = SCENARIO_COMMANDS_COUNT + 1; reply = jdb.receiveReplyFor(command, true, count); diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/redefine/redefine001/redefine001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/redefine/redefine001/redefine001.java index fef7254f276..60684543c6e 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/redefine/redefine001/redefine001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/redefine/redefine001/redefine001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.redefine.redefine001.redefine001 * nsk.jdb.redefine.redefine001.redefine001a * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/reenter/reenter001/reenter001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/reenter/reenter001/reenter001.java index 27bf349d731..3cf654cee54 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/reenter/reenter001/reenter001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/reenter/reenter001/reenter001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.reenter.reenter001.reenter001 * nsk.jdb.reenter.reenter001.reenter001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.reenter.reenter001.reenter001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/regression/b4689395/b4689395.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/regression/b4689395/b4689395.java index e5f81ded534..91dc56c5ade 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/regression/b4689395/b4689395.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/regression/b4689395/b4689395.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -90,7 +90,6 @@ * @library /vmTestbase * /test/lib * - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.regression.b4689395.b4689395 * nsk.jdb.regression.b4689395.b4689395a * diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/resume/resume002/resume002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/resume/resume002/resume002.java index ca87e2b3e93..c081008bcf8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/resume/resume002/resume002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/resume/resume002/resume002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.resume.resume002.resume002 * nsk.jdb.resume.resume002.resume002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.resume.resume002.resume002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/run/run002/run002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/run/run002/run002.java index f63c8564bb5..e2f4fb2c405 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/run/run002/run002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/run/run002/run002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -43,7 +43,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.run.run002.run002 * nsk.jdb.run.run002.run002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.run.run002.run002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/set/set001/set001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/set/set001/set001.java index 515621f6b88..1026ab703cd 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/set/set001/set001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/set/set001/set001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.set.set001.set001 * * @comment make sure set001a is compiled w/ full debug info diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/set/set002/set002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/set/set002/set002.java index d371d07db8b..797243801c7 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/set/set002/set002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/set/set002/set002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.set.set002.set002 * * @comment make sure set002a is compiled w/ full debug info diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/step/step002/step002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/step/step002/step002.java index 94f85dc1850..c9d360e3863 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/step/step002/step002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/step/step002/step002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.step.step002.step002 * * @comment make sure step002a is compiled w/ full debug info diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/step_up/step_up001/step_up001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/step_up/step_up001/step_up001.java index 554ad6e3b8e..a468d62ee75 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/step_up/step_up001/step_up001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/step_up/step_up001/step_up001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -44,7 +44,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.step_up.step_up001.step_up001 * nsk.jdb.step_up.step_up001.step_up001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.step_up.step_up001.step_up001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_at/stop_at002/stop_at002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_at/stop_at002/stop_at002.java index a294612451c..7bf4f72b780 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_at/stop_at002/stop_at002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_at/stop_at002/stop_at002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.stop_at.stop_at002.stop_at002 * nsk.jdb.stop_at.stop_at002.stop_at002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.stop_at.stop_at002.stop_at002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_at/stop_at003/stop_at003.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_at/stop_at003/stop_at003.java index a21018e3ca3..1a6a84aaf05 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_at/stop_at003/stop_at003.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_at/stop_at003/stop_at003.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -48,7 +48,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.stop_at.stop_at003.stop_at003 * nsk.jdb.stop_at.stop_at003.stop_at003a * @run main/othervm PropertyResolvingWrapper nsk.jdb.stop_at.stop_at003.stop_at003 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_in/stop_in002/stop_in002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_in/stop_in002/stop_in002.java index 1361d8c32ab..074e3490a70 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_in/stop_in002/stop_in002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/stop_in/stop_in002/stop_in002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.stop_in.stop_in002.stop_in002 * nsk.jdb.stop_in.stop_in002.stop_in002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.stop_in.stop_in002.stop_in002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/suspend/suspend001/suspend001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/suspend/suspend001/suspend001.java index 7051160ad22..bf122add0fb 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/suspend/suspend001/suspend001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/suspend/suspend001/suspend001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -45,7 +45,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.suspend.suspend001.suspend001 * nsk.jdb.suspend.suspend001.suspend001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.suspend.suspend001.suspend001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/thread/thread002/thread002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/thread/thread002/thread002.java index 1f6f35b7a24..17b1a3dddbf 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/thread/thread002/thread002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/thread/thread002/thread002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.thread.thread002.thread002 * nsk.jdb.thread.thread002.thread002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.thread.thread002.thread002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/threadgroup/threadgroup002/threadgroup002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/threadgroup/threadgroup002/threadgroup002.java index b0a633b32be..d0476cffa21 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/threadgroup/threadgroup002/threadgroup002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/threadgroup/threadgroup002/threadgroup002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.threadgroup.threadgroup002.threadgroup002 * nsk.jdb.threadgroup.threadgroup002.threadgroup002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.threadgroup.threadgroup002.threadgroup002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/threadgroups/threadgroups002/threadgroups002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/threadgroups/threadgroups002/threadgroups002.java index 39593b35d74..d3391872c9b 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/threadgroups/threadgroups002/threadgroups002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/threadgroups/threadgroups002/threadgroups002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.threadgroups.threadgroups002.threadgroups002 * nsk.jdb.threadgroups.threadgroups002.threadgroups002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.threadgroups.threadgroups002.threadgroups002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/threads/threads002/threads002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/threads/threads002/threads002.java index 649a6a53c39..6acead5c22f 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/threads/threads002/threads002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/threads/threads002/threads002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -39,7 +39,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.threads.threads002.threads002 * nsk.jdb.threads.threads002.threads002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.threads.threads002.threads002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/trace/trace001/trace001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/trace/trace001/trace001.java index a9429ce042f..24ee022f797 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/trace/trace001/trace001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/trace/trace001/trace001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.trace.trace001.trace001 * nsk.jdb.trace.trace001.trace001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.trace.trace001.trace001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/uncaught_exception/uncaught_exception002/uncaught_exception002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/uncaught_exception/uncaught_exception002/uncaught_exception002.java index 13a15724ae4..a214515e9ad 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/uncaught_exception/uncaught_exception002/uncaught_exception002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/uncaught_exception/uncaught_exception002/uncaught_exception002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -46,7 +46,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.uncaught_exception.uncaught_exception002.uncaught_exception002 * * @comment make sure uncaught_exception002a is compiled w/ full debug info diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/unmonitor/unmonitor001/unmonitor001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/unmonitor/unmonitor001/unmonitor001.java index 850598f49ed..05974b23439 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/unmonitor/unmonitor001/unmonitor001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/unmonitor/unmonitor001/unmonitor001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.unmonitor.unmonitor001.unmonitor001 * * @comment make sure unmonitor001a is compiled w/ full debug info diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/untrace/untrace001/untrace001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/untrace/untrace001/untrace001.java index 988dd83fb19..6c21f21d1e8 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/untrace/untrace001/untrace001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/untrace/untrace001/untrace001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -53,7 +53,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.untrace.untrace001.untrace001 * nsk.jdb.untrace.untrace001.untrace001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.untrace.untrace001.untrace001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/unwatch/unwatch001/unwatch001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/unwatch/unwatch001/unwatch001.java index ce660b52537..ec0d9ba82d0 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/unwatch/unwatch001/unwatch001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/unwatch/unwatch001/unwatch001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -49,7 +49,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.unwatch.unwatch001.unwatch001 * nsk.jdb.unwatch.unwatch001.unwatch001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.unwatch.unwatch001.unwatch001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/unwatch/unwatch002/unwatch002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/unwatch/unwatch002/unwatch002.java index 2947b8a5689..20781c8ea25 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/unwatch/unwatch002/unwatch002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/unwatch/unwatch002/unwatch002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -50,7 +50,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.unwatch.unwatch002.unwatch002 * nsk.jdb.unwatch.unwatch002.unwatch002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.unwatch.unwatch002.unwatch002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/up/up002/up002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/up/up002/up002.java index 4912cdf5240..22b5cc11ecb 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/up/up002/up002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/up/up002/up002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.up.up002.up002 * nsk.jdb.up.up002.up002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.up.up002.up002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/use/use001/use001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/use/use001/use001.java index 9850087e005..e6f08dc5477 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/use/use001/use001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/use/use001/use001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -42,7 +42,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.use.use001.use001 * nsk.jdb.use.use001.use001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.use.use001.use001 @@ -60,6 +59,7 @@ package nsk.jdb.use.use001; import nsk.share.*; import nsk.share.jdb.*; +import jdk.test.lib.Utils; import java.io.*; import java.util.*; @@ -91,7 +91,7 @@ public class use001 extends JdbTest { String found; String path = ""; - String workdir = argumentHandler.getWorkDir(); + String srcdir = Utils.TEST_SRC; // jdb.setBreakpointInMethod(LAST_BREAK); // reply = jdb.receiveReplyFor(JdbCommand.cont); @@ -110,14 +110,14 @@ public class use001 extends JdbTest { } /* grep = new Paragrep(reply); - count = grep.find(workdir); + count = grep.find(srcdir); if (count == 0) { - log.complain("Not found current working directory in source file path"); + log.complain("Not found current source directory in source file path"); success = false; break; } */ - reply = jdb.receiveReplyFor(JdbCommand.use + workdir + File.pathSeparator + path); + reply = jdb.receiveReplyFor(JdbCommand.use + srcdir + File.pathSeparator + path); if (reply.length == 0) { log.complain("Empty reply on third 'use' command"); success = false; @@ -126,8 +126,8 @@ public class use001 extends JdbTest { reply = jdb.receiveReplyFor(JdbCommand.use); grep = new Paragrep(reply); - if (grep.find(workdir) == 0) { - log.complain("Current working directory should be in source file path"); + if (grep.find(srcdir) == 0) { + log.complain("Current source directory should be in source file path"); success = false; break; } diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/watch/watch001/watch001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/watch/watch001/watch001.java index fb0aed0e8bf..dfa8bdae040 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/watch/watch001/watch001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/watch/watch001/watch001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.watch.watch001.watch001 * nsk.jdb.watch.watch001.watch001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.watch.watch001.watch001 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/watch/watch002/watch002.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/watch/watch002/watch002.java index f50f396ab72..e0bfa267634 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/watch/watch002/watch002.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/watch/watch002/watch002.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -47,7 +47,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.watch.watch002.watch002 * nsk.jdb.watch.watch002.watch002a * @run main/othervm PropertyResolvingWrapper nsk.jdb.watch.watch002.watch002 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where004/where004.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where004/where004.java index d2af9c2c8e5..e25316a5da6 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where004/where004.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where004/where004.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -40,7 +40,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.where.where004.where004 * nsk.jdb.where.where004.where004a * @run main/othervm PropertyResolvingWrapper nsk.jdb.where.where004.where004 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where005/where005.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where005/where005.java index 3c02c2a296b..a405150e748 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where005/where005.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where005/where005.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.where.where005.where005 * nsk.jdb.where.where005.where005a * @run main/othervm PropertyResolvingWrapper nsk.jdb.where.where005.where005 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where006/where006.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where006/where006.java index 35d342bebb7..8532520ff03 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where006/where006.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/where/where006/where006.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -41,7 +41,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.where.where006.where006 * nsk.jdb.where.where006.where006a * @run main/othervm PropertyResolvingWrapper nsk.jdb.where.where006.where006 diff --git a/test/hotspot/jtreg/vmTestbase/nsk/jdb/wherei/wherei001/wherei001.java b/test/hotspot/jtreg/vmTestbase/nsk/jdb/wherei/wherei001/wherei001.java index 6d2ca1229e0..c6cbefaaa51 100644 --- a/test/hotspot/jtreg/vmTestbase/nsk/jdb/wherei/wherei001/wherei001.java +++ b/test/hotspot/jtreg/vmTestbase/nsk/jdb/wherei/wherei001/wherei001.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2020, 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 @@ -36,7 +36,6 @@ * * @library /vmTestbase * /test/lib - * @run driver jdk.test.lib.FileInstaller . . * @build nsk.jdb.wherei.wherei001.wherei001 * nsk.jdb.wherei.wherei001.wherei001a * @run main/othervm PropertyResolvingWrapper nsk.jdb.wherei.wherei001.wherei001 From 8cfc7e39dffca26a076ceecb177566ad01b3977f Mon Sep 17 00:00:00 2001 From: Tom Rodriguez Date: Wed, 15 Jul 2020 12:17:19 -0700 Subject: [PATCH 09/13] 8248524: [JVMCI] Memory corruption / segfault during NumPy installation Reviewed-by: kvn --- src/hotspot/share/jvmci/jvmciEnv.cpp | 17 ++--------------- src/hotspot/share/jvmci/jvmciEnv.hpp | 1 - 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/src/hotspot/share/jvmci/jvmciEnv.cpp b/src/hotspot/share/jvmci/jvmciEnv.cpp index 0000deae674..cb06ea84b3b 100644 --- a/src/hotspot/share/jvmci/jvmciEnv.cpp +++ b/src/hotspot/share/jvmci/jvmciEnv.cpp @@ -621,26 +621,13 @@ const char* JVMCIEnv::as_utf8_string(JVMCIObject str) { } else { JNIAccessMark jni(this); int length = jni()->GetStringLength(str.as_jstring()); - char* result = NEW_RESOURCE_ARRAY(char, length + 1); + int utf8_length = jni()->GetStringUTFLength(str.as_jstring()); + char* result = NEW_RESOURCE_ARRAY(char, utf8_length + 1); jni()->GetStringUTFRegion(str.as_jstring(), 0, length, result); return result; } } -char* JVMCIEnv::as_utf8_string(JVMCIObject str, char* buf, int buflen) { - if (is_hotspot()) { - return java_lang_String::as_utf8_string(HotSpotJVMCI::resolve(str), buf, buflen); - } else { - JNIAccessMark jni(this); - int length = jni()->GetStringLength(str.as_jstring()); - if (length >= buflen) { - length = buflen; - } - jni()->GetStringUTFRegion(str.as_jstring(), 0, length, buf); - return buf; - } -} - #define DO_THROW(name) \ void JVMCIEnv::throw_##name(const char* msg) { \ if (is_hotspot()) { \ diff --git a/src/hotspot/share/jvmci/jvmciEnv.hpp b/src/hotspot/share/jvmci/jvmciEnv.hpp index f92fd173d3f..204c6217ac8 100644 --- a/src/hotspot/share/jvmci/jvmciEnv.hpp +++ b/src/hotspot/share/jvmci/jvmciEnv.hpp @@ -261,7 +261,6 @@ public: JVMCIObject create_box(BasicType type, jvalue* value, JVMCI_TRAPS); const char* as_utf8_string(JVMCIObject str); - char* as_utf8_string(JVMCIObject str, char* buf, int buflen); JVMCIObject create_string(Symbol* str, JVMCI_TRAPS) { JVMCIObject s = create_string(str->as_C_string(), JVMCI_CHECK_(JVMCIObject())); From 55039aa1c6d0b9bbee49fe8764705615d1998dc7 Mon Sep 17 00:00:00 2001 From: Mark Reinhold Date: Wed, 15 Jul 2020 14:21:54 -0700 Subject: [PATCH 10/13] 8249205: Remove unnecessary trademark symbols Reviewed-by: darcy, lancea, bpb, prr, jjg, cjplummer, iris, dfuchs, weijun, joehw, wetmore, bchristi --- make/data/jdwp/jdwp.spec | 30 +++++++++---------- .../share/classes/java/io/Console.java | 8 ++--- .../share/classes/java/io/PrintStream.java | 8 ++--- .../share/classes/java/io/PrintWriter.java | 8 ++--- .../classes/java/lang/AssertionError.java | 16 +++++----- .../share/classes/java/lang/Byte.java | 2 +- .../share/classes/java/lang/Class.java | 18 +++++------ .../share/classes/java/lang/ClassLoader.java | 16 +++++----- .../share/classes/java/lang/Double.java | 2 +- .../share/classes/java/lang/Enum.java | 2 +- .../share/classes/java/lang/Float.java | 2 +- .../share/classes/java/lang/Integer.java | 2 +- .../share/classes/java/lang/Long.java | 2 +- .../share/classes/java/lang/Module.java | 4 +-- .../share/classes/java/lang/Number.java | 2 +- .../share/classes/java/lang/Object.java | 2 +- .../share/classes/java/lang/Package.java | 2 +- .../share/classes/java/lang/Record.java | 4 +-- .../share/classes/java/lang/Short.java | 2 +- .../share/classes/java/lang/String.java | 10 +++---- .../java/lang/annotation/Annotation.java | 2 +- .../java/lang/module/ModuleDescriptor.java | 2 +- .../classes/java/lang/ref/Reference.java | 2 +- .../java/lang/reflect/AccessibleObject.java | 2 +- .../java/lang/reflect/AnnotatedElement.java | 2 +- .../java/lang/reflect/Constructor.java | 2 +- .../classes/java/lang/reflect/Executable.java | 8 ++--- .../classes/java/lang/reflect/Field.java | 2 +- .../java/lang/reflect/GenericDeclaration.java | 2 +- .../classes/java/lang/reflect/Method.java | 2 +- .../classes/java/lang/reflect/Modifier.java | 6 ++-- .../classes/java/lang/reflect/Parameter.java | 6 ++-- .../java/lang/reflect/RecordComponent.java | 2 +- .../java/lang/runtime/ObjectMethods.java | 2 +- .../share/classes/java/math/BigDecimal.java | 10 +++---- .../share/classes/java/math/BigInteger.java | 10 +++---- .../java/security/SecureClassLoader.java | 4 +-- .../share/classes/java/util/Formatter.java | 6 ++-- .../share/classes/java/util/Properties.java | 6 ++-- .../java/util/PropertyResourceBundle.java | 2 +- .../java/util/concurrent/locks/Lock.java | 2 +- .../util/concurrent/locks/StampedLock.java | 2 +- .../java/util/concurrent/package-info.java | 2 +- .../java/util/doc-files/coll-index.html | 2 +- .../classes/java/util/regex/Pattern.java | 4 +-- .../classes/javax/net/ssl/package-info.java | 2 +- .../security/auth/login/package-info.java | 2 +- .../classes/jdk/internal/module/Modules.java | 2 +- .../annotation/processing/Processor.java | 2 +- .../javax/lang/model/AnnotatedConstruct.java | 4 +-- .../javax/lang/model/SourceVersion.java | 12 ++++---- .../model/element/AnnotationValueVisitor.java | 2 +- .../javax/lang/model/element/ElementKind.java | 2 +- .../lang/model/element/ElementVisitor.java | 2 +- .../javax/lang/model/element/Modifier.java | 2 +- .../lang/model/element/ModuleElement.java | 4 +-- .../javax/lang/model/type/TypeKind.java | 2 +- .../javax/lang/model/type/TypeVariable.java | 2 +- .../javax/lang/model/type/TypeVisitor.java | 2 +- .../util/AbstractAnnotationValueVisitor6.java | 2 +- .../model/util/AbstractElementVisitor6.java | 2 +- .../lang/model/util/AbstractTypeVisitor6.java | 2 +- .../lang/model/util/ElementKindVisitor6.java | 2 +- .../lang/model/util/ElementScanner6.java | 2 +- .../util/SimpleAnnotationValueVisitor6.java | 2 +- .../model/util/SimpleElementVisitor6.java | 2 +- .../lang/model/util/SimpleTypeVisitor6.java | 2 +- .../lang/model/util/TypeKindVisitor6.java | 2 +- .../share/classes/javax/tools/Diagnostic.java | 2 +- .../javax/tools/DocumentationTool.java | 2 +- .../classes/javax/tools/JavaCompiler.java | 6 ++-- .../classes/javax/tools/JavaFileManager.java | 8 ++--- .../classes/javax/tools/JavaFileObject.java | 4 +-- .../share/classes/javax/tools/Tool.java | 2 +- .../classes/javax/tools/ToolProvider.java | 4 +-- .../classes/javax/tools/package-info.java | 2 +- .../classes/com/sun/beans/TypeResolver.java | 2 +- .../classes/java/awt/GraphicsDevice.java | 2 +- .../java/awt/doc-files/AWTThreadIssues.html | 4 +-- .../beans/DefaultPersistenceDelegate.java | 2 +- .../share/classes/java/beans/DesignMode.java | 2 +- .../beans/IndexedPropertyChangeEvent.java | 2 +- .../classes/java/beans/Introspector.java | 4 +-- .../java/beans/PropertyChangeSupport.java | 2 +- .../java/beans/VetoableChangeSupport.java | 2 +- .../classes/java/beans/package-info.java | 2 +- .../javax/accessibility/package-info.java | 2 +- .../javax/print/attribute/package-info.java | 2 +- .../classes/javax/print/package-info.java | 2 +- .../classes/javax/sound/midi/MidiMessage.java | 2 +- .../classes/javax/swing/AbstractAction.java | 2 +- .../classes/javax/swing/AbstractButton.java | 6 ++-- .../javax/swing/AbstractCellEditor.java | 2 +- .../javax/swing/AbstractListModel.java | 2 +- .../share/classes/javax/swing/Box.java | 4 +-- .../share/classes/javax/swing/BoxLayout.java | 2 +- .../classes/javax/swing/ButtonGroup.java | 2 +- .../classes/javax/swing/CellRendererPane.java | 2 +- .../javax/swing/DefaultBoundedRangeModel.java | 2 +- .../javax/swing/DefaultButtonModel.java | 2 +- .../javax/swing/DefaultCellEditor.java | 2 +- .../javax/swing/DefaultListCellRenderer.java | 4 +-- .../classes/javax/swing/DefaultListModel.java | 2 +- .../swing/DefaultListSelectionModel.java | 2 +- .../swing/DefaultSingleSelectionModel.java | 2 +- .../share/classes/javax/swing/ImageIcon.java | 4 +-- .../share/classes/javax/swing/JApplet.java | 2 +- .../share/classes/javax/swing/JButton.java | 4 +-- .../share/classes/javax/swing/JCheckBox.java | 4 +-- .../javax/swing/JCheckBoxMenuItem.java | 4 +-- .../classes/javax/swing/JColorChooser.java | 2 +- .../share/classes/javax/swing/JComboBox.java | 4 +-- .../share/classes/javax/swing/JComponent.java | 4 +-- .../classes/javax/swing/JDesktopPane.java | 4 +-- .../share/classes/javax/swing/JDialog.java | 2 +- .../classes/javax/swing/JEditorPane.java | 6 ++-- .../javax/swing/JFormattedTextField.java | 2 +- .../share/classes/javax/swing/JFrame.java | 2 +- .../classes/javax/swing/JInternalFrame.java | 8 ++--- .../share/classes/javax/swing/JLabel.java | 4 +-- .../classes/javax/swing/JLayeredPane.java | 4 +-- .../share/classes/javax/swing/JList.java | 4 +-- .../share/classes/javax/swing/JMenu.java | 6 ++-- .../share/classes/javax/swing/JMenuBar.java | 4 +-- .../share/classes/javax/swing/JMenuItem.java | 4 +-- .../classes/javax/swing/JOptionPane.java | 4 +-- .../share/classes/javax/swing/JPanel.java | 4 +-- .../classes/javax/swing/JPasswordField.java | 4 +-- .../share/classes/javax/swing/JPopupMenu.java | 2 +- .../classes/javax/swing/JProgressBar.java | 6 ++-- .../classes/javax/swing/JRadioButton.java | 4 +-- .../javax/swing/JRadioButtonMenuItem.java | 4 +-- .../share/classes/javax/swing/JRootPane.java | 6 ++-- .../share/classes/javax/swing/JScrollBar.java | 4 +-- .../classes/javax/swing/JScrollPane.java | 6 ++-- .../share/classes/javax/swing/JSeparator.java | 4 +-- .../share/classes/javax/swing/JSlider.java | 4 +-- .../share/classes/javax/swing/JSpinner.java | 2 +- .../share/classes/javax/swing/JSplitPane.java | 4 +-- .../classes/javax/swing/JTabbedPane.java | 4 +-- .../share/classes/javax/swing/JTable.java | 4 +-- .../share/classes/javax/swing/JTextArea.java | 4 +-- .../share/classes/javax/swing/JTextField.java | 4 +-- .../share/classes/javax/swing/JTextPane.java | 2 +- .../classes/javax/swing/JToggleButton.java | 6 ++-- .../share/classes/javax/swing/JToolBar.java | 2 +- .../share/classes/javax/swing/JToolTip.java | 4 +-- .../share/classes/javax/swing/JTree.java | 10 +++---- .../share/classes/javax/swing/JViewport.java | 6 ++-- .../share/classes/javax/swing/JWindow.java | 2 +- .../share/classes/javax/swing/KeyStroke.java | 2 +- .../classes/javax/swing/OverlayLayout.java | 2 +- .../classes/javax/swing/ScrollPaneLayout.java | 2 +- .../classes/javax/swing/SizeRequirements.java | 2 +- .../share/classes/javax/swing/Spring.java | 2 +- .../classes/javax/swing/SpringLayout.java | 2 +- .../share/classes/javax/swing/Timer.java | 2 +- .../share/classes/javax/swing/UIDefaults.java | 2 +- .../share/classes/javax/swing/UIManager.java | 2 +- .../UnsupportedLookAndFeelException.java | 2 +- .../classes/javax/swing/ViewportLayout.java | 2 +- .../javax/swing/border/AbstractBorder.java | 2 +- .../javax/swing/border/BevelBorder.java | 2 +- .../javax/swing/border/CompoundBorder.java | 2 +- .../javax/swing/border/EmptyBorder.java | 2 +- .../javax/swing/border/EtchedBorder.java | 2 +- .../javax/swing/border/LineBorder.java | 2 +- .../javax/swing/border/MatteBorder.java | 2 +- .../javax/swing/border/SoftBevelBorder.java | 2 +- .../javax/swing/border/StrokeBorder.java | 2 +- .../javax/swing/border/TitledBorder.java | 2 +- .../AbstractColorChooserPanel.java | 2 +- .../ColorChooserComponentFactory.java | 2 +- .../colorchooser/DefaultPreviewPanel.java | 2 +- .../DefaultSwatchChooserPanel.java | 2 +- .../javax/swing/event/AncestorEvent.java | 2 +- .../classes/javax/swing/event/CaretEvent.java | 2 +- .../javax/swing/event/ChangeEvent.java | 2 +- .../javax/swing/event/EventListenerList.java | 2 +- .../javax/swing/event/HyperlinkEvent.java | 2 +- .../javax/swing/event/InternalFrameEvent.java | 2 +- .../javax/swing/event/ListDataEvent.java | 2 +- .../javax/swing/event/ListSelectionEvent.java | 2 +- .../javax/swing/event/MenuDragMouseEvent.java | 2 +- .../classes/javax/swing/event/MenuEvent.java | 2 +- .../javax/swing/event/MenuKeyEvent.java | 2 +- .../javax/swing/event/PopupMenuEvent.java | 2 +- .../swing/event/TableColumnModelEvent.java | 2 +- .../javax/swing/event/TableModelEvent.java | 2 +- .../javax/swing/event/TreeExpansionEvent.java | 2 +- .../javax/swing/event/TreeModelEvent.java | 2 +- .../javax/swing/event/TreeSelectionEvent.java | 2 +- .../javax/swing/event/UndoableEditEvent.java | 2 +- .../javax/swing/plaf/BorderUIResource.java | 2 +- .../javax/swing/plaf/ColorUIResource.java | 2 +- .../javax/swing/plaf/DimensionUIResource.java | 2 +- .../javax/swing/plaf/FontUIResource.java | 2 +- .../javax/swing/plaf/IconUIResource.java | 2 +- .../javax/swing/plaf/InsetsUIResource.java | 2 +- .../swing/plaf/basic/BasicArrowButton.java | 2 +- .../swing/plaf/basic/BasicCheckBoxUI.java | 2 +- .../swing/plaf/basic/BasicComboBoxEditor.java | 2 +- .../plaf/basic/BasicComboBoxRenderer.java | 4 +-- .../swing/plaf/basic/BasicComboPopup.java | 2 +- .../swing/plaf/basic/BasicEditorPaneUI.java | 2 +- .../swing/plaf/basic/BasicIconFactory.java | 2 +- .../basic/BasicInternalFrameTitlePane.java | 2 +- .../javax/swing/plaf/basic/BasicListUI.java | 8 ++--- .../swing/plaf/basic/BasicLookAndFeel.java | 2 +- .../plaf/basic/BasicSplitPaneDivider.java | 4 +-- .../swing/plaf/basic/BasicTextAreaUI.java | 2 +- .../swing/plaf/basic/BasicTextFieldUI.java | 2 +- .../swing/plaf/basic/BasicTextPaneUI.java | 2 +- .../javax/swing/plaf/basic/BasicTextUI.java | 2 +- .../javax/swing/plaf/basic/ComboPopup.java | 2 +- .../swing/plaf/metal/DefaultMetalTheme.java | 2 +- .../javax/swing/plaf/metal/MetalButtonUI.java | 2 +- .../swing/plaf/metal/MetalCheckBoxIcon.java | 2 +- .../swing/plaf/metal/MetalCheckBoxUI.java | 2 +- .../swing/plaf/metal/MetalComboBoxButton.java | 2 +- .../swing/plaf/metal/MetalComboBoxEditor.java | 4 +-- .../swing/plaf/metal/MetalComboBoxUI.java | 2 +- .../swing/plaf/metal/MetalIconFactory.java | 12 ++++---- .../swing/plaf/metal/MetalLookAndFeel.java | 2 +- .../swing/plaf/metal/MetalProgressBarUI.java | 2 +- .../swing/plaf/metal/MetalRadioButtonUI.java | 2 +- .../swing/plaf/metal/MetalRootPaneUI.java | 2 +- .../swing/plaf/metal/MetalScrollButton.java | 2 +- .../swing/plaf/metal/MetalScrollPaneUI.java | 2 +- .../swing/plaf/metal/MetalSeparatorUI.java | 2 +- .../javax/swing/plaf/metal/MetalSliderUI.java | 2 +- .../plaf/metal/MetalSplitPaneDivider.java | 2 +- .../swing/plaf/metal/MetalSplitPaneUI.java | 2 +- .../swing/plaf/metal/MetalTabbedPaneUI.java | 2 +- .../swing/plaf/metal/MetalTextFieldUI.java | 2 +- .../swing/plaf/metal/MetalToggleButtonUI.java | 2 +- .../swing/plaf/metal/MetalToolTipUI.java | 2 +- .../swing/plaf/multi/MultiLookAndFeel.java | 2 +- .../swing/plaf/synth/SynthTextAreaUI.java | 2 +- .../swing/plaf/synth/SynthTextFieldUI.java | 2 +- .../swing/plaf/synth/SynthTextPaneUI.java | 2 +- .../javax/swing/table/AbstractTableModel.java | 2 +- .../swing/table/DefaultTableCellRenderer.java | 4 +-- .../swing/table/DefaultTableColumnModel.java | 2 +- .../javax/swing/table/DefaultTableModel.java | 2 +- .../javax/swing/table/JTableHeader.java | 4 +-- .../javax/swing/table/TableColumn.java | 2 +- .../javax/swing/text/AbstractDocument.java | 8 ++--- .../swing/text/BadLocationException.java | 2 +- .../javax/swing/text/DateFormatter.java | 2 +- .../javax/swing/text/DefaultCaret.java | 2 +- .../javax/swing/text/DefaultEditorKit.java | 16 +++++----- .../javax/swing/text/DefaultFormatter.java | 2 +- .../swing/text/DefaultFormatterFactory.java | 2 +- .../swing/text/DefaultStyledDocument.java | 8 ++--- .../swing/text/InternationalFormatter.java | 2 +- .../javax/swing/text/JTextComponent.java | 6 ++-- .../javax/swing/text/MaskFormatter.java | 2 +- .../javax/swing/text/NumberFormatter.java | 2 +- .../javax/swing/text/PlainDocument.java | 2 +- .../javax/swing/text/SimpleAttributeSet.java | 2 +- .../javax/swing/text/StringContent.java | 2 +- .../javax/swing/text/StyleContext.java | 4 +-- .../javax/swing/text/StyledEditorKit.java | 16 +++++----- .../classes/javax/swing/text/TabSet.java | 2 +- .../classes/javax/swing/text/TabStop.java | 2 +- .../classes/javax/swing/text/TextAction.java | 2 +- .../javax/swing/text/html/HTMLDocument.java | 2 +- .../classes/javax/swing/text/html/Option.java | 2 +- .../javax/swing/tree/AbstractLayoutCache.java | 2 +- .../swing/tree/DefaultMutableTreeNode.java | 2 +- .../swing/tree/DefaultTreeCellEditor.java | 2 +- .../swing/tree/DefaultTreeCellRenderer.java | 2 +- .../javax/swing/tree/DefaultTreeModel.java | 2 +- .../swing/tree/DefaultTreeSelectionModel.java | 2 +- .../swing/tree/FixedHeightLayoutCache.java | 2 +- .../classes/javax/swing/tree/TreePath.java | 2 +- .../swing/tree/VariableHeightLayoutCache.java | 2 +- .../javax/swing/undo/CannotRedoException.java | 2 +- .../javax/swing/undo/CannotUndoException.java | 2 +- .../classes/javax/swing/undo/UndoManager.java | 2 +- .../lang/instrument/ClassFileTransformer.java | 2 +- .../java/lang/instrument/Instrumentation.java | 6 ++-- .../java/util/logging/package-info.java | 2 +- .../classes/javax/management/package.html | 4 +-- .../javax/management/remote/package.html | 4 +-- .../javax/naming/directory/package.html | 2 +- .../classes/javax/naming/event/package.html | 2 +- .../classes/javax/naming/ldap/package.html | 2 +- .../share/classes/javax/naming/package.html | 2 +- .../classes/javax/naming/spi/package.html | 2 +- .../classes/javax/script/package-info.java | 2 +- .../classes/javax/sql/rowset/BaseRowSet.java | 6 ++-- .../javax/sql/rowset/CachedRowSet.java | 4 +-- .../javax/sql/rowset/FilteredRowSet.java | 2 +- .../classes/javax/sql/rowset/JdbcRowSet.java | 4 +-- .../classes/javax/sql/rowset/Joinable.java | 2 +- .../javax/sql/rowset/RowSetWarning.java | 2 +- .../classes/javax/sql/rowset/WebRowSet.java | 2 +- .../javax/sql/rowset/package-info.java | 6 ++-- src/java.sql/share/classes/java/sql/Blob.java | 2 +- src/java.sql/share/classes/java/sql/Clob.java | 2 +- .../classes/java/sql/DatabaseMetaData.java | 2 +- .../share/classes/java/sql/Driver.java | 2 +- .../share/classes/java/sql/NClob.java | 2 +- .../share/classes/java/sql/ResultSet.java | 2 +- .../share/classes/java/sql/package-info.java | 26 ++++++++-------- .../javax/sql/ConnectionPoolDataSource.java | 2 +- .../share/classes/javax/sql/DataSource.java | 2 +- .../share/classes/javax/sql/RowSet.java | 2 +- .../share/classes/javax/sql/XADataSource.java | 2 +- .../share/classes/javax/sql/package-info.java | 10 +++---- .../javax/xml/datatype/package-info.java | 2 +- .../com/sun/tools/attach/package-info.java | 2 +- .../sun/source/doctree/DocTreeVisitor.java | 2 +- .../classes/com/sun/source/tree/Tree.java | 2 +- .../com/sun/source/tree/TreeVisitor.java | 2 +- .../jdk/incubator/foreign/package-info.java | 4 +-- .../classes/jdk/javadoc/doclet/Doclet.java | 2 +- .../formats/html/HtmlDocletWriter.java | 2 +- .../internal/doclets/toolkit/util/Utils.java | 2 +- .../com/sun/tools/classfile/package-info.java | 2 +- .../share/classes/com/sun/jdi/Accessible.java | 4 +-- .../share/classes/com/sun/jdi/ArrayType.java | 2 +- .../com/sun/jdi/ClassNotLoadedException.java | 4 +-- .../share/classes/com/sun/jdi/ClassType.java | 4 +-- .../classes/com/sun/jdi/InterfaceType.java | 2 +- .../classes/com/sun/jdi/LocalVariable.java | 2 +- .../share/classes/com/sun/jdi/Locatable.java | 2 +- .../share/classes/com/sun/jdi/Method.java | 2 +- .../classes/com/sun/jdi/ObjectReference.java | 6 ++-- .../classes/com/sun/jdi/ReferenceType.java | 4 +-- .../classes/com/sun/jdi/TypeComponent.java | 2 +- .../jdi/request/AccessWatchpointRequest.java | 2 +- .../ModificationWatchpointRequest.java | 2 +- src/jdk.jdi/share/classes/module-info.java | 2 +- .../classes/jdk/jshell/tool/package-info.java | 2 +- 337 files changed, 545 insertions(+), 545 deletions(-) diff --git a/make/data/jdwp/jdwp.spec b/make/data/jdwp/jdwp.spec index 8a4f0bac95f..b55a286aaa1 100644 --- a/make/data/jdwp/jdwp.spec +++ b/make/data/jdwp/jdwp.spec @@ -530,7 +530,7 @@ JDWP "Java(tm) Debug Wire Protocol" "returned for each class. " "Generic signatures are described in the signature attribute " "section in " - "The Java™ Virtual Machine Specification. " + "The Java Virtual Machine Specification. " "Since JDWP version 1.5." (Out ) @@ -643,7 +643,7 @@ JDWP "Java(tm) Debug Wire Protocol" ) (Reply (int modBits "Modifier bits as defined in Chapter 4 of " - "The Java™ Virtual Machine Specification") + "The Java Virtual Machine Specification") ) (ErrorSet (Error INVALID_CLASS "refType is not the ID of a reference " @@ -671,7 +671,7 @@ JDWP "Java(tm) Debug Wire Protocol" "which provide additional information on the " "field declaration. Individual flag values are " "defined in Chapter 4 of " - "The Java™ Virtual Machine Specification. " + "The Java Virtual Machine Specification. " "In addition, The 0xf0000000 bit identifies " "the field as synthetic, if the synthetic attribute " "capability is available.") @@ -706,7 +706,7 @@ JDWP "Java(tm) Debug Wire Protocol" "which provide additional information on the " "method declaration. Individual flag values are " "defined in Chapter 4 of " - "The Java™ Virtual Machine Specification. " + "The Java Virtual Machine Specification. " "In addition, The 0xf0000000 bit identifies " "the method as synthetic, if the synthetic attribute " "capability is available.") @@ -793,7 +793,7 @@ JDWP "Java(tm) Debug Wire Protocol" "Returns the current status of the reference type. The status " "indicates the extent to which the reference type has been " "initialized, as described in section 2.1.6 of " - "The Java™ Virtual Machine Specification. " + "The Java Virtual Machine Specification. " "If the class is linked the PREPARED and VERIFIED bits in the returned status bits " "will be set. If the class is initialized the INITIALIZED bit in the returned " "status bits will be set. If an error occured during initialization then the " @@ -872,7 +872,7 @@ JDWP "Java(tm) Debug Wire Protocol" "generic signature if there is one. " "Generic signatures are described in the signature attribute " "section in " - "The Java™ Virtual Machine Specification. " + "The Java Virtual Machine Specification. " "Since JDWP version 1.5." (Out (referenceType refType "The reference type ID.") @@ -900,7 +900,7 @@ JDWP "Java(tm) Debug Wire Protocol" "Fields are returned in the order they occur in the class file. " "Generic signatures are described in the signature attribute " "section in " - "The Java™ Virtual Machine Specification. " + "The Java Virtual Machine Specification. " "Since JDWP version 1.5." (Out (referenceType refType "The reference type ID.") @@ -917,7 +917,7 @@ JDWP "Java(tm) Debug Wire Protocol" "which provide additional information on the " "field declaration. Individual flag values are " "defined in Chapter 4 of " - "The Java™ Virtual Machine Specification. " + "The Java Virtual Machine Specification. " "In addition, The 0xf0000000 bit identifies " "the field as synthetic, if the synthetic attribute " "capability is available.") @@ -942,7 +942,7 @@ JDWP "Java(tm) Debug Wire Protocol" "Methods are returned in the order they occur in the class file. " "Generic signatures are described in the signature attribute " "section in " - "The Java™ Virtual Machine Specification. " + "The Java Virtual Machine Specification. " "Since JDWP version 1.5." (Out (referenceType refType "The reference type ID.") @@ -959,7 +959,7 @@ JDWP "Java(tm) Debug Wire Protocol" "which provide additional information on the " "method declaration. Individual flag values are " "defined in Chapter 4 of " - "The Java™ Virtual Machine Specification. " + "The Java Virtual Machine Specification. " "In addition, The 0xf0000000 bit identifies " "the method as synthetic, if the synthetic attribute " "capability is available.") @@ -1022,7 +1022,7 @@ JDWP "Java(tm) Debug Wire Protocol" (Command ConstantPool=18 "Return the raw bytes of the constant pool in the format of the " "constant_pool item of the Class File Format in " - "The Java™ Virtual Machine Specification. " + "The Java Virtual Machine Specification. " "

Since JDWP version 1.6. Requires canGetConstantPool capability - see " "CapabilitiesNew."" (Out @@ -1032,7 +1032,7 @@ JDWP "Java(tm) Debug Wire Protocol" (int count "Total number of constant pool entries plus one. This " "corresponds to the constant_pool_count item of the " "Class File Format in " - "The Java™ Virtual Machine Specification. ") + "The Java Virtual Machine Specification. ") (Repeat bytes (byte cpbytes "Raw bytes of constant pool") ) @@ -1435,7 +1435,7 @@ JDWP "Java(tm) Debug Wire Protocol" ) (Command Bytecodes=3 "Retrieve the method's bytecodes as defined in " - "The Java™ Virtual Machine Specification. " + "The Java Virtual Machine Specification. " "Requires canGetBytecodes capability - see " "CapabilitiesNew." (Out @@ -1491,7 +1491,7 @@ JDWP "Java(tm) Debug Wire Protocol" "table. Also, synthetic variables may be present. " "Generic signatures are described in the signature attribute " "section in " - "The Java™ Virtual Machine Specification. " + "The Java Virtual Machine Specification. " "Since JDWP version 1.5." (Out (referenceType refType "The class.") @@ -2082,7 +2082,7 @@ JDWP "Java(tm) Debug Wire Protocol" "The method which will return early is referred to as the " "called method. The called method is the current method (as " "defined by the Frames section in " - "The Java™ Virtual Machine Specification) " + "The Java Virtual Machine Specification) " "for the specified thread at the time this command " "is received. " "

" diff --git a/src/java.base/share/classes/java/io/Console.java b/src/java.base/share/classes/java/io/Console.java index 9f03f5358b9..b82673eeb0a 100644 --- a/src/java.base/share/classes/java/io/Console.java +++ b/src/java.base/share/classes/java/io/Console.java @@ -152,7 +152,7 @@ public final class Console implements Flushable * extra arguments are ignored. The number of arguments is * variable and may be zero. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The behaviour on a * {@code null} argument depends on the conversion. @@ -192,7 +192,7 @@ public final class Console implements Flushable * extra arguments are ignored. The number of arguments is * variable and may be zero. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The behaviour on a * {@code null} argument depends on the conversion. @@ -225,7 +225,7 @@ public final class Console implements Flushable * string. If there are more arguments than format specifiers, the * extra arguments are ignored. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * * @throws IllegalFormatException * If a format string contains an illegal syntax, a format @@ -289,7 +289,7 @@ public final class Console implements Flushable * string. If there are more arguments than format specifiers, the * extra arguments are ignored. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * * @throws IllegalFormatException * If a format string contains an illegal syntax, a format diff --git a/src/java.base/share/classes/java/io/PrintStream.java b/src/java.base/share/classes/java/io/PrintStream.java index a8566a0b873..b34f6c54e12 100644 --- a/src/java.base/share/classes/java/io/PrintStream.java +++ b/src/java.base/share/classes/java/io/PrintStream.java @@ -1080,7 +1080,7 @@ public class PrintStream extends FilterOutputStream * extra arguments are ignored. The number of arguments is * variable and may be zero. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The behaviour on a * {@code null} argument depends on the conversion. @@ -1132,7 +1132,7 @@ public class PrintStream extends FilterOutputStream * extra arguments are ignored. The number of arguments is * variable and may be zero. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The behaviour on a * {@code null} argument depends on the conversion. @@ -1177,7 +1177,7 @@ public class PrintStream extends FilterOutputStream * extra arguments are ignored. The number of arguments is * variable and may be zero. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The behaviour on a * {@code null} argument depends on the conversion. @@ -1236,7 +1236,7 @@ public class PrintStream extends FilterOutputStream * extra arguments are ignored. The number of arguments is * variable and may be zero. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The behaviour on a * {@code null} argument depends on the conversion. diff --git a/src/java.base/share/classes/java/io/PrintWriter.java b/src/java.base/share/classes/java/io/PrintWriter.java index 07dbd34a967..a338af28e8e 100644 --- a/src/java.base/share/classes/java/io/PrintWriter.java +++ b/src/java.base/share/classes/java/io/PrintWriter.java @@ -863,7 +863,7 @@ public class PrintWriter extends Writer { * extra arguments are ignored. The number of arguments is * variable and may be zero. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The behaviour on a * {@code null} argument depends on the conversion. @@ -916,7 +916,7 @@ public class PrintWriter extends Writer { * extra arguments are ignored. The number of arguments is * variable and may be zero. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The behaviour on a * {@code null} argument depends on the conversion. @@ -960,7 +960,7 @@ public class PrintWriter extends Writer { * extra arguments are ignored. The number of arguments is * variable and may be zero. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The behaviour on a * {@code null} argument depends on the conversion. @@ -1020,7 +1020,7 @@ public class PrintWriter extends Writer { * extra arguments are ignored. The number of arguments is * variable and may be zero. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The behaviour on a * {@code null} argument depends on the conversion. diff --git a/src/java.base/share/classes/java/lang/AssertionError.java b/src/java.base/share/classes/java/lang/AssertionError.java index 3643e42e81f..704e774468a 100644 --- a/src/java.base/share/classes/java/lang/AssertionError.java +++ b/src/java.base/share/classes/java/lang/AssertionError.java @@ -35,7 +35,7 @@ package java.lang; * * has as its detail message the string conversion of * expression (as defined in section 15.18.1.1 of - * The Java™ Language Specification), + * The Java Language Specification), * regardless of the type of expression. * * @since 1.4 @@ -63,7 +63,7 @@ public class AssertionError extends Error { * Constructs an AssertionError with its detail message derived * from the specified object, which is converted to a string as * defined in section 15.18.1.1 of - * The Java™ Language Specification. + * The Java Language Specification. *

* If the specified object is an instance of {@code Throwable}, it * becomes the cause of the newly constructed assertion error. @@ -81,7 +81,7 @@ public class AssertionError extends Error { * Constructs an AssertionError with its detail message derived * from the specified {@code boolean}, which is converted to * a string as defined in section 15.18.1.1 of - * The Java™ Language Specification. + * The Java Language Specification. * * @param detailMessage value to be used in constructing detail message */ @@ -93,7 +93,7 @@ public class AssertionError extends Error { * Constructs an AssertionError with its detail message derived * from the specified {@code char}, which is converted to a * string as defined in section 15.18.1.1 of - * The Java™ Language Specification. + * The Java Language Specification. * * @param detailMessage value to be used in constructing detail message */ @@ -105,7 +105,7 @@ public class AssertionError extends Error { * Constructs an AssertionError with its detail message derived * from the specified {@code int}, which is converted to a * string as defined in section 15.18.1.1 of - * The Java™ Language Specification. + * The Java Language Specification. * * @param detailMessage value to be used in constructing detail message */ @@ -117,7 +117,7 @@ public class AssertionError extends Error { * Constructs an AssertionError with its detail message derived * from the specified {@code long}, which is converted to a * string as defined in section 15.18.1.1 of - * The Java™ Language Specification. + * The Java Language Specification. * * @param detailMessage value to be used in constructing detail message */ @@ -129,7 +129,7 @@ public class AssertionError extends Error { * Constructs an AssertionError with its detail message derived * from the specified {@code float}, which is converted to a * string as defined in section 15.18.1.1 of - * The Java™ Language Specification. + * The Java Language Specification. * * @param detailMessage value to be used in constructing detail message */ @@ -141,7 +141,7 @@ public class AssertionError extends Error { * Constructs an AssertionError with its detail message derived * from the specified {@code double}, which is converted to a * string as defined in section 15.18.1.1 of - * The Java™ Language Specification. + * The Java Language Specification. * * @param detailMessage value to be used in constructing detail message */ diff --git a/src/java.base/share/classes/java/lang/Byte.java b/src/java.base/share/classes/java/lang/Byte.java index c43b319c9e7..98c2ef422d4 100644 --- a/src/java.base/share/classes/java/lang/Byte.java +++ b/src/java.base/share/classes/java/lang/Byte.java @@ -290,7 +290,7 @@ public final class Byte extends Number implements Comparable, Constable { * * DecimalNumeral, HexDigits, and OctalDigits * are as defined in section 3.10.1 of - * The Java™ Language Specification, + * The Java Language Specification, * except that underscores are not accepted between digits. * *

The sequence of characters following an optional diff --git a/src/java.base/share/classes/java/lang/Class.java b/src/java.base/share/classes/java/lang/Class.java index 05d2415ed8a..1fabad43738 100644 --- a/src/java.base/share/classes/java/lang/Class.java +++ b/src/java.base/share/classes/java/lang/Class.java @@ -413,7 +413,7 @@ public final class Class implements java.io.Serializable, * * Note that this method throws errors related to loading, linking * or initializing as specified in Sections {@jls 12.2}, {@jls - * 12.3}, and {@jls 12.4} of The Java™ Language + * 12.3}, and {@jls 12.4} of The Java Language * Specification. * Note that this method does not check whether the requested class * is accessible to its caller. @@ -422,7 +422,7 @@ public final class Class implements java.io.Serializable, * @param initialize if {@code true} the class will be initialized * (which implies linking). See Section {@jls - * 12.4} of The Java™ Language + * 12.4} of The Java Language * Specification. * @param loader class loader from which the class must be loaded * @return class object representing the desired class @@ -700,7 +700,7 @@ public final class Class implements java.io.Serializable, *

Specifically, this method tests whether the type represented by the * specified {@code Class} parameter can be converted to the type * represented by this {@code Class} object via an identity conversion - * or via a widening reference conversion. See The Java™ Language + * or via a widening reference conversion. See The Java Language * Specification, sections {@jls 5.1.1} and {@jls 5.1.4}, * for details. * @@ -952,7 +952,7 @@ public final class Class implements java.io.Serializable, * @throws java.lang.reflect.GenericSignatureFormatError if the generic * signature of this generic declaration does not conform to * the format specified in section {@jvms 4.7.9} of - * The Java™ Virtual Machine Specification + * The Java Virtual Machine Specification * @since 1.5 */ @SuppressWarnings("unchecked") @@ -1000,7 +1000,7 @@ public final class Class implements java.io.Serializable, * * @throws java.lang.reflect.GenericSignatureFormatError if the generic * class signature does not conform to the format specified in - * section {@jvms 4.7.9} of The Java™ Virtual + * section {@jvms 4.7.9} of The Java Virtual * Machine Specification * @throws TypeNotPresentException if the generic superclass * refers to a non-existent type declaration @@ -1197,7 +1197,7 @@ public final class Class implements java.io.Serializable, * @throws java.lang.reflect.GenericSignatureFormatError * if the generic class signature does not conform to the * format specified in section {@jvms 4.7.9} of The - * Java™ Virtual Machine Specification + * Java Virtual Machine Specification * @throws TypeNotPresentException if any of the generic * superinterfaces refers to a non-existent type declaration * @throws java.lang.reflect.MalformedParameterizedTypeException @@ -1269,7 +1269,7 @@ public final class Class implements java.io.Serializable, * by this specification. * *

The modifier encodings are defined in section {@jvms 4.1} - * of The Java™ Virtual Machine Specification. + * of The Java Virtual Machine Specification. * * @return the {@code int} representing the modifiers for this class * @see java.lang.reflect.Modifier @@ -1678,7 +1678,7 @@ public final class Class implements java.io.Serializable, /** * Returns the canonical name of the underlying class as - * defined by The Java™ Language Specification. + * defined by The Java Language Specification. * Returns {@code null} if the underlying class does not have a canonical * name. Classes without canonical names include: *

    @@ -2478,7 +2478,7 @@ public final class Class implements java.io.Serializable, * object represents an interface, a primitive type, an array class, or * void. * - *

    See The Java™ Language Specification, + *

    See The Java Language Specification, * section {@jls 8.2}. * * @return the array of {@code Constructor} objects representing all the diff --git a/src/java.base/share/classes/java/lang/ClassLoader.java b/src/java.base/share/classes/java/lang/ClassLoader.java index 6f3eb264c44..d8bd0ee66bd 100644 --- a/src/java.base/share/classes/java/lang/ClassLoader.java +++ b/src/java.base/share/classes/java/lang/ClassLoader.java @@ -207,7 +207,7 @@ import sun.security.util.SecurityConstants; * *

    Any class name provided as a {@code String} parameter to methods in * {@code ClassLoader} must be a binary name as defined by - * The Java™ Language Specification. + * The Java Language Specification. * *

    Examples of valid class names include: *

    @@ -220,7 +220,7 @@ import sun.security.util.SecurityConstants;
      * 

    Any package name provided as a {@code String} parameter to methods in * {@code ClassLoader} must be either the empty string (denoting an unnamed package) * or a fully qualified name as defined by - * The Java™ Language Specification. + * The Java Language Specification. * * @jls 6.7 Fully Qualified Names * @jls 13.1 The Form of a Binary @@ -765,7 +765,7 @@ public abstract class ClassLoader { * The bytes that make up the class data. The bytes in positions * {@code off} through {@code off+len-1} should have the format * of a valid class file as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * * @param off * The start offset in {@code b} of the class data @@ -838,7 +838,7 @@ public abstract class ClassLoader { * The bytes that make up the class data. The bytes in positions * {@code off} through {@code off+len-1} should have the format * of a valid class file as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * * @param off * The start offset in {@code b} of the class data @@ -972,7 +972,7 @@ public abstract class ClassLoader { * The bytes that make up the class data. The bytes in positions * {@code off} through {@code off+len-1} should have the format * of a valid class file as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * * @param off * The start offset in {@code b} of the class data @@ -1056,7 +1056,7 @@ public abstract class ClassLoader { * The bytes that make up the class data. The bytes from positions * {@code b.position()} through {@code b.position() + b.limit() -1 * } should have the format of a valid class file as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * * @param protectionDomain * The {@code ProtectionDomain} of the class, or {@code null}. @@ -1213,7 +1213,7 @@ public abstract class ClassLoader { * used by a class loader to link a class. If the class {@code c} has * already been linked, then this method simply returns. Otherwise, the * class is linked as described in the "Execution" chapter of - * The Java™ Language Specification. + * The Java Language Specification. * * @param c * The class to link @@ -2532,7 +2532,7 @@ public abstract class ClassLoader { * is to be set. A {@code null} value indicates the unnamed * package that is "current" * (see section 7.4.2 of - * The Java™ Language Specification.) + * The Java Language Specification.) * * @param enabled * {@code true} if classes loaded by this classloader and diff --git a/src/java.base/share/classes/java/lang/Double.java b/src/java.base/share/classes/java/lang/Double.java index 121126c5356..eca7e892311 100644 --- a/src/java.base/share/classes/java/lang/Double.java +++ b/src/java.base/share/classes/java/lang/Double.java @@ -403,7 +403,7 @@ public final class Double extends Number * HexNumeral, HexDigits, SignedInteger and * FloatTypeSuffix are as defined in the lexical structure * sections of - * The Java™ Language Specification, + * The Java Language Specification, * except that underscores are not accepted between digits. * If {@code s} does not have the form of * a FloatValue, then a {@code NumberFormatException} diff --git a/src/java.base/share/classes/java/lang/Enum.java b/src/java.base/share/classes/java/lang/Enum.java index 21cb3f5f6b3..4e6b582bb57 100644 --- a/src/java.base/share/classes/java/lang/Enum.java +++ b/src/java.base/share/classes/java/lang/Enum.java @@ -44,7 +44,7 @@ import static java.util.Objects.requireNonNull; * * More information about enums, including descriptions of the * implicitly declared methods synthesized by the compiler, can be - * found in section {@jls 8.9} of The Java™ Language + * found in section {@jls 8.9} of The Java Language * Specification. * * Enumeration types are all serializable and receive special handling diff --git a/src/java.base/share/classes/java/lang/Float.java b/src/java.base/share/classes/java/lang/Float.java index e66244e54ef..f21eca098cf 100644 --- a/src/java.base/share/classes/java/lang/Float.java +++ b/src/java.base/share/classes/java/lang/Float.java @@ -362,7 +362,7 @@ public final class Float extends Number * HexNumeral, HexDigits, SignedInteger and * FloatTypeSuffix are as defined in the lexical structure * sections of - * The Java™ Language Specification, + * The Java Language Specification, * except that underscores are not accepted between digits. * If {@code s} does not have the form of * a FloatValue, then a {@code NumberFormatException} diff --git a/src/java.base/share/classes/java/lang/Integer.java b/src/java.base/share/classes/java/lang/Integer.java index 03629099971..6f6b845ce96 100644 --- a/src/java.base/share/classes/java/lang/Integer.java +++ b/src/java.base/share/classes/java/lang/Integer.java @@ -1377,7 +1377,7 @@ public final class Integer extends Number * * DecimalNumeral, HexDigits, and OctalDigits * are as defined in section 3.10.1 of - * The Java™ Language Specification, + * The Java Language Specification, * except that underscores are not accepted between digits. * *

    The sequence of characters following an optional diff --git a/src/java.base/share/classes/java/lang/Long.java b/src/java.base/share/classes/java/lang/Long.java index 9d0ca53c7b6..4a51ae20b22 100644 --- a/src/java.base/share/classes/java/lang/Long.java +++ b/src/java.base/share/classes/java/lang/Long.java @@ -1229,7 +1229,7 @@ public final class Long extends Number * * DecimalNumeral, HexDigits, and OctalDigits * are as defined in section 3.10.1 of - * The Java™ Language Specification, + * The Java Language Specification, * except that underscores are not accepted between digits. * *

    The sequence of characters following an optional diff --git a/src/java.base/share/classes/java/lang/Module.java b/src/java.base/share/classes/java/lang/Module.java index 9d708f6337c..32279ba4c2c 100644 --- a/src/java.base/share/classes/java/lang/Module.java +++ b/src/java.base/share/classes/java/lang/Module.java @@ -85,7 +85,7 @@ import sun.security.util.SecurityConstants; * *

    The package names that are parameters or returned by methods defined in * this class are the fully-qualified names of the packages as defined in - * section 6.5.3 of The Java™ Language Specification, for + * section 6.5.3 of The Java Language Specification, for * example, {@code "java.lang"}.

    * *

    Unless otherwise specified, passing a {@code null} argument to a method @@ -672,7 +672,7 @@ public final class Module implements AnnotatedElement { *

    This method has no effect if the package is already exported (or * open) to the given module.

    * - * @apiNote As specified in section 5.4.3 of the The Java™ + * @apiNote As specified in section 5.4.3 of the The Java * Virtual Machine Specification , if an attempt to resolve a * symbolic reference fails because of a linkage error, then subsequent * attempts to resolve the reference always fail with the same error that diff --git a/src/java.base/share/classes/java/lang/Number.java b/src/java.base/share/classes/java/lang/Number.java index d0210b98ba2..7b8542cbdb1 100644 --- a/src/java.base/share/classes/java/lang/Number.java +++ b/src/java.base/share/classes/java/lang/Number.java @@ -37,7 +37,7 @@ package java.lang; * * For platform classes, the conversion is often analogous to a * narrowing primitive conversion or a widening primitive conversion - * as defined in The Java™ Language Specification + * as defined in The Java Language Specification * for converting between primitive types. Therefore, conversions may * lose information about the overall magnitude of a numeric value, may * lose precision, and may even return a result of a different sign diff --git a/src/java.base/share/classes/java/lang/Object.java b/src/java.base/share/classes/java/lang/Object.java index 5f9dbc516d6..8b19dffa598 100644 --- a/src/java.base/share/classes/java/lang/Object.java +++ b/src/java.base/share/classes/java/lang/Object.java @@ -462,7 +462,7 @@ public class Object { * system resources or to perform other cleanup. *

    * The general contract of {@code finalize} is that it is invoked - * if and when the Java™ virtual + * if and when the Java virtual * machine has determined that there is no longer any * means by which this object can be accessed by any thread that has * not yet died, except as a result of an action taken by the diff --git a/src/java.base/share/classes/java/lang/Package.java b/src/java.base/share/classes/java/lang/Package.java index 334d0b4b791..e359881d874 100644 --- a/src/java.base/share/classes/java/lang/Package.java +++ b/src/java.base/share/classes/java/lang/Package.java @@ -122,7 +122,7 @@ public class Package extends NamedPackage implements java.lang.reflect.Annotated * Return the name of this package. * * @return The fully-qualified name of this package as defined in section 6.5.3 of - * The Java™ Language Specification, + * The Java Language Specification, * for example, {@code java.lang} */ public String getName() { diff --git a/src/java.base/share/classes/java/lang/Record.java b/src/java.base/share/classes/java/lang/Record.java index 6c81f09f282..4d568e8baa0 100644 --- a/src/java.base/share/classes/java/lang/Record.java +++ b/src/java.base/share/classes/java/lang/Record.java @@ -38,10 +38,10 @@ package java.lang; *

    More information about records, including descriptions of the * implicitly declared methods synthesized by the compiler, can be * found in section 8.10 of - * The Java™ Language Specification. + * The Java Language Specification. * *

    A record class is a shallowly immutable, transparent carrier for - * a fixed set of values, called the record components. The Java™ + * a fixed set of values, called the record components. The Java * language provides concise syntax for declaring record classes, whereby the * record components are declared in the record header. The list of record * components declared in the record header form the record descriptor. diff --git a/src/java.base/share/classes/java/lang/Short.java b/src/java.base/share/classes/java/lang/Short.java index de3e738bd8d..2824c2dc8d3 100644 --- a/src/java.base/share/classes/java/lang/Short.java +++ b/src/java.base/share/classes/java/lang/Short.java @@ -295,7 +295,7 @@ public final class Short extends Number implements Comparable, Constable * * DecimalNumeral, HexDigits, and OctalDigits * are as defined in section 3.10.1 of - * The Java™ Language Specification, + * The Java Language Specification, * except that underscores are not accepted between digits. * *

    The sequence of characters following an optional diff --git a/src/java.base/share/classes/java/lang/String.java b/src/java.base/share/classes/java/lang/String.java index 33992cad98e..8ed94e7aa31 100644 --- a/src/java.base/share/classes/java/lang/String.java +++ b/src/java.base/share/classes/java/lang/String.java @@ -90,7 +90,7 @@ import static java.util.function.Predicate.not; * The Java language provides special support for the string * concatenation operator ( + ), and for conversion of * other objects to strings. For additional information on string - * concatenation and conversion, see The Java™ Language Specification. + * concatenation and conversion, see The Java Language Specification. * *

    Unless otherwise noted, passing a {@code null} argument to a constructor * or method in this class will cause a {@link NullPointerException} to be @@ -113,7 +113,7 @@ import static java.util.function.Predicate.not; * * @implNote The implementation of the string concatenation operator is left to * the discretion of a Java compiler, as long as the compiler ultimately conforms - * to The Java™ Language Specification. For example, the {@code javac} compiler + * to The Java Language Specification. For example, the {@code javac} compiler * may implement the operator with {@code StringBuffer}, {@code StringBuilder}, * or {@code java.lang.invoke.StringConcatFactory} depending on the JDK version. The * implementation of string conversion is typically through the method {@code toString}, @@ -3269,7 +3269,7 @@ public final class String * extra arguments are ignored. The number of arguments is * variable and may be zero. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The behaviour on a * {@code null} argument depends on the conversion. @@ -3310,7 +3310,7 @@ public final class String * extra arguments are ignored. The number of arguments is * variable and may be zero. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The behaviour on a * {@code null} argument depends on the * conversion. @@ -3534,7 +3534,7 @@ public final class String *

    * All literal strings and string-valued constant expressions are * interned. String literals are defined in section 3.10.5 of the - * The Java™ Language Specification. + * The Java Language Specification. * * @return a string that has the same contents as this string, but is * guaranteed to be from a pool of unique strings. diff --git a/src/java.base/share/classes/java/lang/annotation/Annotation.java b/src/java.base/share/classes/java/lang/annotation/Annotation.java index 1921ecbc601..a969517c0fc 100644 --- a/src/java.base/share/classes/java/lang/annotation/Annotation.java +++ b/src/java.base/share/classes/java/lang/annotation/Annotation.java @@ -32,7 +32,7 @@ package java.lang.annotation; * define an annotation type. * * More information about annotation types can be found in section 9.6 of - * The Java™ Language Specification. + * The Java Language Specification. * * The {@link java.lang.reflect.AnnotatedElement} interface discusses * compatibility concerns when evolving an annotation type from being diff --git a/src/java.base/share/classes/java/lang/module/ModuleDescriptor.java b/src/java.base/share/classes/java/lang/module/ModuleDescriptor.java index 895770c1276..e1e1191f3ab 100644 --- a/src/java.base/share/classes/java/lang/module/ModuleDescriptor.java +++ b/src/java.base/share/classes/java/lang/module/ModuleDescriptor.java @@ -1489,7 +1489,7 @@ public class ModuleDescriptor *

    The module names, package names, and class names that are parameters * specified to the builder methods are the module names, package names, * and qualified names of classes (in named packages) as defined in the - * The Java™ Language Specification.

    + * The Java Language Specification.

    * *

    Example usage:

    *
    {@code    ModuleDescriptor descriptor = ModuleDescriptor.newModule("stats.core")
    diff --git a/src/java.base/share/classes/java/lang/ref/Reference.java b/src/java.base/share/classes/java/lang/ref/Reference.java
    index bcfb73fcd07..9e41aac327b 100644
    --- a/src/java.base/share/classes/java/lang/ref/Reference.java
    +++ b/src/java.base/share/classes/java/lang/ref/Reference.java
    @@ -419,7 +419,7 @@ public abstract class Reference {
          * facilities are not possible or do not provide the desired control.  This
          * method is applicable only when reclamation may have visible effects,
          * which is possible for objects with finalizers (See Section 12.6
    -     * of The Java™ Language Specification) that
    +     * of The Java Language Specification) that
          * are implemented in ways that rely on ordering control for
          * correctness.
          *
    diff --git a/src/java.base/share/classes/java/lang/reflect/AccessibleObject.java b/src/java.base/share/classes/java/lang/reflect/AccessibleObject.java
    index 3db39d8e92c..ad0c01d9d3c 100644
    --- a/src/java.base/share/classes/java/lang/reflect/AccessibleObject.java
    +++ b/src/java.base/share/classes/java/lang/reflect/AccessibleObject.java
    @@ -440,7 +440,7 @@ public class AccessibleObject implements AnnotatedElement {
          * 

    This method returns {@code true} if the {@code accessible} flag * is set to {@code true}, i.e. the checks for Java language access control * are suppressed, or if the caller can access the member as - * specified in The Java™ Language Specification, + * specified in The Java Language Specification, * with the variation noted in the class description.

    * * @param obj an instance object of the declaring class of this reflected diff --git a/src/java.base/share/classes/java/lang/reflect/AnnotatedElement.java b/src/java.base/share/classes/java/lang/reflect/AnnotatedElement.java index a4bb8a089ce..933ffab3e73 100644 --- a/src/java.base/share/classes/java/lang/reflect/AnnotatedElement.java +++ b/src/java.base/share/classes/java/lang/reflect/AnnotatedElement.java @@ -45,7 +45,7 @@ import sun.reflect.annotation.AnnotationType; * element are on a declaration, whereas annotations on a * type are on a specific use of a type name. * - * As defined by The Java™ Language Specification + * As defined by The Java Language Specification * section {@jls 9.7.4}, an annotation on an element is a * declaration annotation and an annotation on a type is a * type annotation. diff --git a/src/java.base/share/classes/java/lang/reflect/Constructor.java b/src/java.base/share/classes/java/lang/reflect/Constructor.java index a1dafe9935e..d762d31644e 100644 --- a/src/java.base/share/classes/java/lang/reflect/Constructor.java +++ b/src/java.base/share/classes/java/lang/reflect/Constructor.java @@ -437,7 +437,7 @@ public final class Constructor extends Executable { *

    If the constructor's declaring class is an inner class in a * non-static context, the first argument to the constructor needs * to be the enclosing instance; see section 15.9.3 of - * The Java™ Language Specification. + * The Java Language Specification. * *

    If the required access and argument checks succeed and the * instantiation will proceed, the constructor's declaring class diff --git a/src/java.base/share/classes/java/lang/reflect/Executable.java b/src/java.base/share/classes/java/lang/reflect/Executable.java index def7500f2ad..2b223c5ce6b 100644 --- a/src/java.base/share/classes/java/lang/reflect/Executable.java +++ b/src/java.base/share/classes/java/lang/reflect/Executable.java @@ -217,7 +217,7 @@ public abstract class Executable extends AccessibleObject * @throws GenericSignatureFormatError if the generic * signature of this generic declaration does not conform to * the format specified in - * The Java™ Virtual Machine Specification + * The Java Virtual Machine Specification */ public abstract TypeVariable[] getTypeParameters(); @@ -276,7 +276,7 @@ public abstract class Executable extends AccessibleObject * @throws GenericSignatureFormatError * if the generic method signature does not conform to the format * specified in - * The Java™ Virtual Machine Specification + * The Java Virtual Machine Specification * @throws TypeNotPresentException if any of the parameter * types of the underlying executable refers to a non-existent type * declaration @@ -474,7 +474,7 @@ public abstract class Executable extends AccessibleObject * @throws GenericSignatureFormatError * if the generic method signature does not conform to the format * specified in - * The Java™ Virtual Machine Specification + * The Java Virtual Machine Specification * @throws TypeNotPresentException if the underlying executable's * {@code throws} clause refers to a non-existent type declaration * @throws MalformedParameterizedTypeException if @@ -515,7 +515,7 @@ public abstract class Executable extends AccessibleObject * * @return true if and only if this executable is a synthetic * construct as defined by - * The Java™ Language Specification. + * The Java Language Specification. * @jls 13.1 The Form of a Binary */ public boolean isSynthetic() { diff --git a/src/java.base/share/classes/java/lang/reflect/Field.java b/src/java.base/share/classes/java/lang/reflect/Field.java index 75bf314c5e0..4c1e394f78c 100644 --- a/src/java.base/share/classes/java/lang/reflect/Field.java +++ b/src/java.base/share/classes/java/lang/reflect/Field.java @@ -255,7 +255,7 @@ class Field extends AccessibleObject implements Member { * the field represented by this {@code Field} object * @throws GenericSignatureFormatError if the generic field * signature does not conform to the format specified in - * The Java™ Virtual Machine Specification + * The Java Virtual Machine Specification * @throws TypeNotPresentException if the generic type * signature of the underlying field refers to a non-existent * type declaration diff --git a/src/java.base/share/classes/java/lang/reflect/GenericDeclaration.java b/src/java.base/share/classes/java/lang/reflect/GenericDeclaration.java index 042e359ad6f..c389f407d6e 100644 --- a/src/java.base/share/classes/java/lang/reflect/GenericDeclaration.java +++ b/src/java.base/share/classes/java/lang/reflect/GenericDeclaration.java @@ -43,7 +43,7 @@ public interface GenericDeclaration extends AnnotatedElement { * @throws GenericSignatureFormatError if the generic * signature of this generic declaration does not conform to * the format specified in - * The Java™ Virtual Machine Specification + * The Java Virtual Machine Specification */ public TypeVariable[] getTypeParameters(); } diff --git a/src/java.base/share/classes/java/lang/reflect/Method.java b/src/java.base/share/classes/java/lang/reflect/Method.java index 93dd2f491a7..c86808cf797 100644 --- a/src/java.base/share/classes/java/lang/reflect/Method.java +++ b/src/java.base/share/classes/java/lang/reflect/Method.java @@ -277,7 +277,7 @@ public final class Method extends Executable { * @throws GenericSignatureFormatError * if the generic method signature does not conform to the format * specified in - * The Java™ Virtual Machine Specification + * The Java Virtual Machine Specification * @throws TypeNotPresentException if the underlying method's * return type refers to a non-existent type declaration * @throws MalformedParameterizedTypeException if the diff --git a/src/java.base/share/classes/java/lang/reflect/Modifier.java b/src/java.base/share/classes/java/lang/reflect/Modifier.java index a0980db5e05..1355a6c664d 100644 --- a/src/java.base/share/classes/java/lang/reflect/Modifier.java +++ b/src/java.base/share/classes/java/lang/reflect/Modifier.java @@ -33,7 +33,7 @@ import java.util.StringJoiner; * modifiers are represented as integers with distinct bit positions * representing different modifiers. The values for the constants * representing the modifiers are taken from the tables in sections 4.1, 4.4, 4.5, and 4.7 of - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * * @see Class#getModifiers() * @see Member#getModifiers() @@ -201,7 +201,7 @@ public class Modifier { *

    * The modifier names are returned in an order consistent with the * suggested modifier orderings given in sections 8.1.1, 8.3.1, 8.4.3, 8.8.3, and 9.1.1 of - * The Java™ Language Specification. + * The Java Language Specification. * The full modifier ordering used by this method is: *
    {@code * public protected private abstract static final transient @@ -247,7 +247,7 @@ public class Modifier { /* * Access modifier flag constants from tables 4.1, 4.4, 4.5, and 4.7 of - * The Java™ Virtual Machine Specification + * The Java Virtual Machine Specification */ /** diff --git a/src/java.base/share/classes/java/lang/reflect/Parameter.java b/src/java.base/share/classes/java/lang/reflect/Parameter.java index dfa43112300..71056ea1f3d 100644 --- a/src/java.base/share/classes/java/lang/reflect/Parameter.java +++ b/src/java.base/share/classes/java/lang/reflect/Parameter.java @@ -112,7 +112,7 @@ public final class Parameter implements AnnotatedElement { /** * Returns a string describing this parameter. The format is the * modifiers for the parameter, if any, in canonical order as - * recommended by The Java™ Language + * recommended by The Java Language * Specification, followed by the fully-qualified type of * the parameter (excluding the last [] if the parameter is * variable arity), followed by "..." if the parameter is variable @@ -247,7 +247,7 @@ public final class Parameter implements AnnotatedElement { * in source code; returns {@code false} otherwise. * * @return true if and only if this parameter is implicitly - * declared as defined by The Java™ Language + * declared as defined by The Java Language * Specification. */ public boolean isImplicit() { @@ -262,7 +262,7 @@ public final class Parameter implements AnnotatedElement { * @jls 13.1 The Form of a Binary * @return true if and only if this parameter is a synthetic * construct as defined by - * The Java™ Language Specification. + * The Java Language Specification. */ public boolean isSynthetic() { return Modifier.isSynthetic(getModifiers()); diff --git a/src/java.base/share/classes/java/lang/reflect/RecordComponent.java b/src/java.base/share/classes/java/lang/reflect/RecordComponent.java index 7f5b01fb640..225a0999f17 100644 --- a/src/java.base/share/classes/java/lang/reflect/RecordComponent.java +++ b/src/java.base/share/classes/java/lang/reflect/RecordComponent.java @@ -120,7 +120,7 @@ public final class RecordComponent implements AnnotatedElement { * this record component * @throws GenericSignatureFormatError if the generic record component * signature does not conform to the format specified in - * The Java™ Virtual Machine Specification + * The Java Virtual Machine Specification * @throws TypeNotPresentException if the generic type * signature of the underlying record component refers to a non-existent * type declaration diff --git a/src/java.base/share/classes/java/lang/runtime/ObjectMethods.java b/src/java.base/share/classes/java/lang/runtime/ObjectMethods.java index f7b5816d571..f1115b6c36d 100644 --- a/src/java.base/share/classes/java/lang/runtime/ObjectMethods.java +++ b/src/java.base/share/classes/java/lang/runtime/ObjectMethods.java @@ -48,7 +48,7 @@ import java.util.Objects; * Bootstrap methods for state-driven implementations of core methods, * including {@link Object#equals(Object)}, {@link Object#hashCode()}, and * {@link Object#toString()}. These methods may be used, for example, by - * Java™ compiler implementations to implement the bodies of {@link Object} + * Java compiler implementations to implement the bodies of {@link Object} * methods for record classes. * * @since 14 diff --git a/src/java.base/share/classes/java/math/BigDecimal.java b/src/java.base/share/classes/java/math/BigDecimal.java index 1febdac1600..9b33f63a63f 100644 --- a/src/java.base/share/classes/java/math/BigDecimal.java +++ b/src/java.base/share/classes/java/math/BigDecimal.java @@ -3455,7 +3455,7 @@ public class BigDecimal extends Number implements Comparable { * This conversion is analogous to the * narrowing primitive conversion from {@code double} to * {@code long} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * any fractional part of this * {@code BigDecimal} will be discarded. Note that this * conversion can lose information about the precision of the @@ -3493,7 +3493,7 @@ public class BigDecimal extends Number implements Comparable { * This conversion is analogous to the * narrowing primitive conversion from {@code double} to * {@code short} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * any fractional part of this * {@code BigDecimal} will be discarded, and if the resulting * "{@code BigInteger}" is too big to fit in a @@ -3591,7 +3591,7 @@ public class BigDecimal extends Number implements Comparable { * This conversion is analogous to the * narrowing primitive conversion from {@code double} to * {@code short} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * any fractional part of this * {@code BigDecimal} will be discarded, and if the resulting * "{@code BigInteger}" is too big to fit in an @@ -3675,7 +3675,7 @@ public class BigDecimal extends Number implements Comparable { * This conversion is similar to the * narrowing primitive conversion from {@code double} to * {@code float} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * if this {@code BigDecimal} has too great a * magnitude to represent as a {@code float}, it will be * converted to {@link Float#NEGATIVE_INFINITY} or {@link @@ -3720,7 +3720,7 @@ public class BigDecimal extends Number implements Comparable { * This conversion is similar to the * narrowing primitive conversion from {@code double} to * {@code float} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * if this {@code BigDecimal} has too great a * magnitude represent as a {@code double}, it will be * converted to {@link Double#NEGATIVE_INFINITY} or {@link diff --git a/src/java.base/share/classes/java/math/BigInteger.java b/src/java.base/share/classes/java/math/BigInteger.java index 9ed191da06b..aff9c62a9f0 100644 --- a/src/java.base/share/classes/java/math/BigInteger.java +++ b/src/java.base/share/classes/java/math/BigInteger.java @@ -54,7 +54,7 @@ import jdk.internal.vm.annotation.ForceInline; * and a few other miscellaneous operations. * *

    Semantics of arithmetic operations exactly mimic those of Java's integer - * arithmetic operators, as defined in The Java™ Language Specification. + * arithmetic operators, as defined in The Java Language Specification. * For example, division by zero throws an {@code ArithmeticException}, and * division of a negative by a positive yields a negative (or zero) remainder. * @@ -4152,7 +4152,7 @@ public class BigInteger extends Number implements Comparable { * conversion is analogous to a * narrowing primitive conversion from {@code long} to * {@code int} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * if this BigInteger is too big to fit in an * {@code int}, only the low-order 32 bits are returned. * Note that this conversion can lose information about the @@ -4174,7 +4174,7 @@ public class BigInteger extends Number implements Comparable { * conversion is analogous to a * narrowing primitive conversion from {@code long} to * {@code int} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * if this BigInteger is too big to fit in a * {@code long}, only the low-order 64 bits are returned. * Note that this conversion can lose information about the @@ -4198,7 +4198,7 @@ public class BigInteger extends Number implements Comparable { * conversion is similar to the * narrowing primitive conversion from {@code double} to * {@code float} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * if this BigInteger has too great a magnitude * to represent as a {@code float}, it will be converted to * {@link Float#NEGATIVE_INFINITY} or {@link @@ -4283,7 +4283,7 @@ public class BigInteger extends Number implements Comparable { * conversion is similar to the * narrowing primitive conversion from {@code double} to * {@code float} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * if this BigInteger has too great a magnitude * to represent as a {@code double}, it will be converted to * {@link Double#NEGATIVE_INFINITY} or {@link diff --git a/src/java.base/share/classes/java/security/SecureClassLoader.java b/src/java.base/share/classes/java/security/SecureClassLoader.java index d63d5590552..0f2983a40bd 100644 --- a/src/java.base/share/classes/java/security/SecureClassLoader.java +++ b/src/java.base/share/classes/java/security/SecureClassLoader.java @@ -128,7 +128,7 @@ public class SecureClassLoader extends ClassLoader { * @param b the bytes that make up the class data. The bytes in * positions {@code off} through {@code off+len-1} * should have the format of a valid class file as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * @param off the start offset in {@code b} of the class data * @param len the length of the class data * @param cs the associated CodeSource, or {@code null} if none @@ -165,7 +165,7 @@ public class SecureClassLoader extends ClassLoader { * @param b the bytes that make up the class data. The bytes from positions * {@code b.position()} through {@code b.position() + b.limit() -1} * should have the format of a valid class file as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * @param cs the associated CodeSource, or {@code null} if none * @return the {@code Class} object created from the data, * and optional CodeSource. diff --git a/src/java.base/share/classes/java/util/Formatter.java b/src/java.base/share/classes/java/util/Formatter.java index daa3722b1fe..327f910e4b1 100644 --- a/src/java.base/share/classes/java/util/Formatter.java +++ b/src/java.base/share/classes/java/util/Formatter.java @@ -1898,7 +1898,7 @@ import sun.util.locale.provider.ResourceBundleBasedAdapter; * *

    The maximum number of arguments is limited by the maximum dimension of a * Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * If the argument index does not correspond to an * available argument, then a {@link MissingFormatArgumentException} is thrown. * @@ -2589,7 +2589,7 @@ public final class Formatter implements Closeable, Flushable { * string. If there are more arguments than format specifiers, the * extra arguments are ignored. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * * @throws IllegalFormatException * If a format string contains an illegal syntax, a format @@ -2628,7 +2628,7 @@ public final class Formatter implements Closeable, Flushable { * string. If there are more arguments than format specifiers, the * extra arguments are ignored. The maximum number of arguments is * limited by the maximum dimension of a Java array as defined by - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * * @throws IllegalFormatException * If a format string contains an illegal syntax, a format diff --git a/src/java.base/share/classes/java/util/Properties.java b/src/java.base/share/classes/java/util/Properties.java index 9e6fe2e0bc5..2f4bc9d0332 100644 --- a/src/java.base/share/classes/java/util/Properties.java +++ b/src/java.base/share/classes/java/util/Properties.java @@ -95,7 +95,7 @@ import jdk.internal.util.xml.PropertiesDefaultHandler; * the input/output stream is encoded in ISO 8859-1 character encoding. * Characters that cannot be directly represented in this encoding can be written using * Unicode escapes as defined in section 3.3 of - * The Java™ Language Specification; + * The Java Language Specification; * only a single 'u' character is allowed in an escape * sequence. * @@ -337,7 +337,7 @@ public class Properties extends Hashtable { * Characters in keys and elements can be represented in escape * sequences similar to those used for character and string literals * (see sections 3.3 and 3.10.6 of - * The Java™ Language Specification). + * The Java Language Specification). * * The differences from the character escape sequences and Unicode * escapes used for characters and strings are: @@ -391,7 +391,7 @@ public class Properties extends Hashtable { * character. Characters not in Latin1, and certain special characters, * are represented in keys and elements using Unicode escapes as defined in * section 3.3 of - * The Java™ Language Specification. + * The Java Language Specification. *

    * The specified stream remains open after this method returns. * diff --git a/src/java.base/share/classes/java/util/PropertyResourceBundle.java b/src/java.base/share/classes/java/util/PropertyResourceBundle.java index 48e800369e4..fba731b3bd9 100644 --- a/src/java.base/share/classes/java/util/PropertyResourceBundle.java +++ b/src/java.base/share/classes/java/util/PropertyResourceBundle.java @@ -120,7 +120,7 @@ import sun.util.ResourceBundleEnumeration; * and throws the exception if it encounters an invalid sequence. * If "ISO-8859-1" is specified, characters that cannot be represented in * ISO-8859-1 encoding must be represented by Unicode Escapes as defined in section - * 3.3 of The Java™ Language Specification + * 3.3 of The Java Language Specification * whereas the other constructor which takes a {@code Reader} does not have that limitation. * Other encoding values are ignored for this system property. * The system property is read and evaluated when initializing this class. diff --git a/src/java.base/share/classes/java/util/concurrent/locks/Lock.java b/src/java.base/share/classes/java/util/concurrent/locks/Lock.java index a59d3ee3d9d..84100e64a13 100644 --- a/src/java.base/share/classes/java/util/concurrent/locks/Lock.java +++ b/src/java.base/share/classes/java/util/concurrent/locks/Lock.java @@ -123,7 +123,7 @@ import java.util.concurrent.TimeUnit; * memory synchronization semantics as provided by the built-in monitor * lock, as described in * Chapter 17 of - * The Java™ Language Specification: + * The Java Language Specification: *

      *
    • A successful {@code lock} operation has the same memory * synchronization effects as a successful Lock action. diff --git a/src/java.base/share/classes/java/util/concurrent/locks/StampedLock.java b/src/java.base/share/classes/java/util/concurrent/locks/StampedLock.java index ee04b39b9df..b13df1ce381 100644 --- a/src/java.base/share/classes/java/util/concurrent/locks/StampedLock.java +++ b/src/java.base/share/classes/java/util/concurrent/locks/StampedLock.java @@ -132,7 +132,7 @@ import jdk.internal.vm.annotation.ReservedStackAccess; *

      Memory Synchronization. Methods with the effect of * successfully locking in any mode have the same memory * synchronization effects as a Lock action, as described in - * Chapter 17 of The Java™ Language Specification. + * Chapter 17 of The Java Language Specification. * Methods successfully unlocking in write mode have the same memory * synchronization effects as an Unlock action. In optimistic * read usages, actions prior to the most recent write mode unlock action diff --git a/src/java.base/share/classes/java/util/concurrent/package-info.java b/src/java.base/share/classes/java/util/concurrent/package-info.java index 7695b109842..dd0c8f79bc0 100644 --- a/src/java.base/share/classes/java/util/concurrent/package-info.java +++ b/src/java.base/share/classes/java/util/concurrent/package-info.java @@ -227,7 +227,7 @@ *

      Memory Consistency Properties

      * * Chapter 17 of - * The Java™ Language Specification defines the + * The Java Language Specification defines the * happens-before relation on memory operations such as reads and * writes of shared variables. The results of a write by one thread are * guaranteed to be visible to a read by another thread only if the write diff --git a/src/java.base/share/classes/java/util/doc-files/coll-index.html b/src/java.base/share/classes/java/util/doc-files/coll-index.html index bf902fa137f..803583958d4 100644 --- a/src/java.base/share/classes/java/util/doc-files/coll-index.html +++ b/src/java.base/share/classes/java/util/doc-files/coll-index.html @@ -53,7 +53,7 @@ framework is based on more than a dozen collection interfaces. It includes implementations of these interfaces and algorithms to manipulate them.

      The documents in this section are non-normative portions of -the Java™ Platform, Standard Edition API Specification.

      +the Java Platform, Standard Edition API Specification.

      • Overview - An overview of the collections framework.
      • diff --git a/src/java.base/share/classes/java/util/regex/Pattern.java b/src/java.base/share/classes/java/util/regex/Pattern.java index 25efbe89534..8b9fbf2e291 100644 --- a/src/java.base/share/classes/java/util/regex/Pattern.java +++ b/src/java.base/share/classes/java/util/regex/Pattern.java @@ -395,7 +395,7 @@ import jdk.internal.util.ArraysSupport; * *

        Backslashes within string literals in Java source code are interpreted * as required by - * The Java™ Language Specification + * The Java Language Specification * as either Unicode escapes (section 3.3) or other character escapes (section 3.10.6) * It is therefore necessary to double backslashes in string * literals that represent regular expressions to protect them from @@ -544,7 +544,7 @@ import jdk.internal.util.ArraysSupport; *

        * Unicode escape sequences such as \u2014 in Java source code * are processed as described in section 3.3 of - * The Java™ Language Specification. + * The Java Language Specification. * Such escape sequences are also implemented directly by the regular-expression * parser so that Unicode escapes can be used in expressions that are read from * files or from the keyboard. Thus the strings "\u2014" and diff --git a/src/java.base/share/classes/javax/net/ssl/package-info.java b/src/java.base/share/classes/javax/net/ssl/package-info.java index 47ea7bf1ff6..f41b3b7f19a 100644 --- a/src/java.base/share/classes/javax/net/ssl/package-info.java +++ b/src/java.base/share/classes/javax/net/ssl/package-info.java @@ -32,7 +32,7 @@ * *

        * diff --git a/src/java.base/share/classes/javax/security/auth/login/package-info.java b/src/java.base/share/classes/javax/security/auth/login/package-info.java index 555b4983f38..70d25f1acaa 100644 --- a/src/java.base/share/classes/javax/security/auth/login/package-info.java +++ b/src/java.base/share/classes/javax/security/auth/login/package-info.java @@ -29,7 +29,7 @@ * * * diff --git a/src/java.base/share/classes/jdk/internal/module/Modules.java b/src/java.base/share/classes/jdk/internal/module/Modules.java index 58dc99c2827..7bafa76bfa8 100644 --- a/src/java.base/share/classes/jdk/internal/module/Modules.java +++ b/src/java.base/share/classes/jdk/internal/module/Modules.java @@ -56,7 +56,7 @@ import jdk.internal.access.SharedSecrets; * code that need to link to supporting classes. * * The parameters that are package names in this API are the fully-qualified - * names of the packages as defined in section 6.5.3 of The Java™ + * names of the packages as defined in section 6.5.3 of The Java * Language Specification , for example, {@code "java.lang"}. */ diff --git a/src/java.compiler/share/classes/javax/annotation/processing/Processor.java b/src/java.compiler/share/classes/javax/annotation/processing/Processor.java index c9bd9738b20..3059496a7a7 100644 --- a/src/java.compiler/share/classes/javax/annotation/processing/Processor.java +++ b/src/java.compiler/share/classes/javax/annotation/processing/Processor.java @@ -286,7 +286,7 @@ public interface Processor { *
    * * where TypeName and ModuleName are as defined in - * The Java™ Language Specification. + * The Java Language Specification. * * @apiNote When running in an environment which supports modules, * processors are encouraged to include the module prefix when diff --git a/src/java.compiler/share/classes/javax/lang/model/AnnotatedConstruct.java b/src/java.compiler/share/classes/javax/lang/model/AnnotatedConstruct.java index d639af0bdcf..dc51cd1ac9f 100644 --- a/src/java.compiler/share/classes/javax/lang/model/AnnotatedConstruct.java +++ b/src/java.compiler/share/classes/javax/lang/model/AnnotatedConstruct.java @@ -39,7 +39,7 @@ import javax.lang.model.type.*; * are on a declaration, whereas annotations on a type are on * a specific use of a type name. * - * As defined by The Java™ Language Specification + * As defined by The Java Language Specification * section {@jls 9.7.4}, an annotation on an element is a * declaration annotation and an annotation on a type is a * type annotation. @@ -74,7 +74,7 @@ import javax.lang.model.type.*; * down to affiliated mandated members. Type annotations modifying the * type of a record component can be also propagated to mandated * members. Propagation of the annotations to mandated members is - * governed by rules given in the The Java™ Language + * governed by rules given in the The Java Language * Specification. * * If there are multiple annotations of type AT present on diff --git a/src/java.compiler/share/classes/javax/lang/model/SourceVersion.java b/src/java.compiler/share/classes/javax/lang/model/SourceVersion.java index eca9b1de9b2..4604b34e3f6 100644 --- a/src/java.compiler/share/classes/javax/lang/model/SourceVersion.java +++ b/src/java.compiler/share/classes/javax/lang/model/SourceVersion.java @@ -30,10 +30,10 @@ import java.util.Set; import java.util.HashSet; /** - * Source versions of the Java™ programming language. + * Source versions of the Java programming language. * * See the appropriate edition of - * The Java™ Language Specification + * The Java Language Specification * for information about a particular source version. * *

    Note that additional source version constants will be added to @@ -69,7 +69,7 @@ public enum SourceVersion { * The original version. * * The language described in - * The Java™ Language Specification, First Edition. + * The Java Language Specification, First Edition. */ RELEASE_0, @@ -77,7 +77,7 @@ public enum SourceVersion { * The version recognized by the Java Platform 1.1. * * The language is {@code RELEASE_0} augmented with nested classes as described in the 1.1 update to - * The Java™ Language Specification, First Edition. + * The Java Language Specification, First Edition. */ RELEASE_1, @@ -86,7 +86,7 @@ public enum SourceVersion { * v 1.2. * * The language described in - * The Java™ Language Specification, + * The Java Language Specification, * Second Edition, which includes the {@code * strictfp} modifier. */ @@ -113,7 +113,7 @@ public enum SourceVersion { * Edition 5.0. * * The language described in - * The Java™ Language Specification, + * The Java Language Specification, * Third Edition. First release to support * generics, annotations, autoboxing, var-args, enhanced {@code * for} loop, and hexadecimal floating-point literals. diff --git a/src/java.compiler/share/classes/javax/lang/model/element/AnnotationValueVisitor.java b/src/java.compiler/share/classes/javax/lang/model/element/AnnotationValueVisitor.java index 13dbecb160f..fd730a253df 100644 --- a/src/java.compiler/share/classes/javax/lang/model/element/AnnotationValueVisitor.java +++ b/src/java.compiler/share/classes/javax/lang/model/element/AnnotationValueVisitor.java @@ -51,7 +51,7 @@ import javax.lang.model.util.*; * @apiNote * WARNING: It is possible that methods will be added * to this interface to accommodate new, currently unknown, language - * structures added to future versions of the Java™ programming + * structures added to future versions of the Java programming * language. * * Such additions have already occurred in another visitor interface in diff --git a/src/java.compiler/share/classes/javax/lang/model/element/ElementKind.java b/src/java.compiler/share/classes/javax/lang/model/element/ElementKind.java index 68f9dfce7f6..deb9f8006c6 100644 --- a/src/java.compiler/share/classes/javax/lang/model/element/ElementKind.java +++ b/src/java.compiler/share/classes/javax/lang/model/element/ElementKind.java @@ -30,7 +30,7 @@ package javax.lang.model.element; * *

    Note that it is possible additional element kinds will be added * to accommodate new, currently unknown, language structures added to - * future versions of the Java™ programming language. + * future versions of the Java programming language. * * @author Joseph D. Darcy * @author Scott Seligman diff --git a/src/java.compiler/share/classes/javax/lang/model/element/ElementVisitor.java b/src/java.compiler/share/classes/javax/lang/model/element/ElementVisitor.java index 265bc6947cb..dd37a25db4f 100644 --- a/src/java.compiler/share/classes/javax/lang/model/element/ElementVisitor.java +++ b/src/java.compiler/share/classes/javax/lang/model/element/ElementVisitor.java @@ -43,7 +43,7 @@ import javax.lang.model.util.*; * @apiNote * WARNING: It is possible that methods will be added * to this interface to accommodate new, currently unknown, language - * structures added to future versions of the Java™ programming + * structures added to future versions of the Java programming * language. * * Such additions have already occurred to support language features diff --git a/src/java.compiler/share/classes/javax/lang/model/element/Modifier.java b/src/java.compiler/share/classes/javax/lang/model/element/Modifier.java index d6a38787397..f8aef53bae3 100644 --- a/src/java.compiler/share/classes/javax/lang/model/element/Modifier.java +++ b/src/java.compiler/share/classes/javax/lang/model/element/Modifier.java @@ -107,7 +107,7 @@ public enum Modifier { /** * Returns this modifier's name as defined in The - * Java™ Language Specification. + * Java Language Specification. * The modifier name is the {@linkplain #name() name of the enum * constant} in lowercase and with any underscores ("{@code _}") * replaced with hyphens ("{@code -}"). diff --git a/src/java.compiler/share/classes/javax/lang/model/element/ModuleElement.java b/src/java.compiler/share/classes/javax/lang/model/element/ModuleElement.java index 1467c72346b..e01b4a25240 100644 --- a/src/java.compiler/share/classes/javax/lang/model/element/ModuleElement.java +++ b/src/java.compiler/share/classes/javax/lang/model/element/ModuleElement.java @@ -132,7 +132,7 @@ public interface ModuleElement extends Element, QualifiedNameable { * *

    Note that it is possible additional directive kinds will be added * to accommodate new, currently unknown, language structures added to - * future versions of the Java™ programming language. + * future versions of the Java programming language. * * @since 9 * @spec JPMS @@ -211,7 +211,7 @@ public interface ModuleElement extends Element, QualifiedNameable { * *

    WARNING: It is possible that methods will be added to * this interface to accommodate new, currently unknown, language - * structures added to future versions of the Java™ programming + * structures added to future versions of the Java programming * language. Methods to accommodate new language constructs will * be added in a source compatible way using * default methods. diff --git a/src/java.compiler/share/classes/javax/lang/model/type/TypeKind.java b/src/java.compiler/share/classes/javax/lang/model/type/TypeKind.java index 4618757da2e..66696e544b7 100644 --- a/src/java.compiler/share/classes/javax/lang/model/type/TypeKind.java +++ b/src/java.compiler/share/classes/javax/lang/model/type/TypeKind.java @@ -31,7 +31,7 @@ package javax.lang.model.type; * *

    Note that it is possible additional type kinds will be added to * accommodate new, currently unknown, language structures added to - * future versions of the Java™ programming language. + * future versions of the Java programming language. * * @author Joseph D. Darcy * @author Scott Seligman diff --git a/src/java.compiler/share/classes/javax/lang/model/type/TypeVariable.java b/src/java.compiler/share/classes/javax/lang/model/type/TypeVariable.java index dd45b59c68a..9ad57598c8b 100644 --- a/src/java.compiler/share/classes/javax/lang/model/type/TypeVariable.java +++ b/src/java.compiler/share/classes/javax/lang/model/type/TypeVariable.java @@ -39,7 +39,7 @@ import javax.lang.model.util.Types; * A type variable may also be declared implicitly, as by * the capture conversion of a wildcard type argument * (see chapter 5 of - * The Java™ Language Specification). + * The Java Language Specification). * * @author Joseph D. Darcy * @author Scott Seligman diff --git a/src/java.compiler/share/classes/javax/lang/model/type/TypeVisitor.java b/src/java.compiler/share/classes/javax/lang/model/type/TypeVisitor.java index fb7310043d4..7172c17a614 100644 --- a/src/java.compiler/share/classes/javax/lang/model/type/TypeVisitor.java +++ b/src/java.compiler/share/classes/javax/lang/model/type/TypeVisitor.java @@ -44,7 +44,7 @@ import javax.lang.model.util.*; * @apiNote * WARNING: It is possible that methods will be added * to this interface to accommodate new, currently unknown, language - * structures added to future versions of the Java™ programming + * structures added to future versions of the Java programming * language. * * Such additions have already occurred to support language features diff --git a/src/java.compiler/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor6.java b/src/java.compiler/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor6.java index e31b72b5adf..0bf5674a6fb 100644 --- a/src/java.compiler/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor6.java +++ b/src/java.compiler/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor6.java @@ -42,7 +42,7 @@ import javax.annotation.processing.SupportedSourceVersion; * AnnotationValueVisitor} interface implemented by this class may * have methods added to it in the future to accommodate new, * currently unknown, language structures added to future versions of - * the Java™ programming language. Therefore, methods whose + * the Java programming language. Therefore, methods whose * names begin with {@code "visit"} may be added to this class in the * future; to avoid incompatibilities, classes and subclasses which * extend this class should not declare any instance methods with diff --git a/src/java.compiler/share/classes/javax/lang/model/util/AbstractElementVisitor6.java b/src/java.compiler/share/classes/javax/lang/model/util/AbstractElementVisitor6.java index 429f2df3723..c10c0c33c92 100644 --- a/src/java.compiler/share/classes/javax/lang/model/util/AbstractElementVisitor6.java +++ b/src/java.compiler/share/classes/javax/lang/model/util/AbstractElementVisitor6.java @@ -41,7 +41,7 @@ import static javax.lang.model.SourceVersion.*; * ElementVisitor} interface implemented by this class may have * methods added to it in the future to accommodate new, currently * unknown, language structures added to future versions of the - * Java™ programming language. Therefore, methods whose names + * Java programming language. Therefore, methods whose names * begin with {@code "visit"} may be added to this class in the * future; to avoid incompatibilities, classes and subclasses which * extend this class should not declare any instance methods with diff --git a/src/java.compiler/share/classes/javax/lang/model/util/AbstractTypeVisitor6.java b/src/java.compiler/share/classes/javax/lang/model/util/AbstractTypeVisitor6.java index 2dcf1095072..52e2686e055 100644 --- a/src/java.compiler/share/classes/javax/lang/model/util/AbstractTypeVisitor6.java +++ b/src/java.compiler/share/classes/javax/lang/model/util/AbstractTypeVisitor6.java @@ -39,7 +39,7 @@ import static javax.lang.model.SourceVersion.*; *

    WARNING: The {@code * TypeVisitor} interface implemented by this class may have methods * added to it in the future to accommodate new, currently unknown, - * language structures added to future versions of the Java™ + * language structures added to future versions of the Java * programming language. Therefore, methods whose names begin with * {@code "visit"} may be added to this class in the future; to avoid * incompatibilities, classes and subclasses which extend this class diff --git a/src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor6.java b/src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor6.java index 4bf1cc705ef..356accba1e0 100644 --- a/src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor6.java +++ b/src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor6.java @@ -52,7 +52,7 @@ import javax.lang.model.SourceVersion; * methods added to it or the {@link ElementKind ElementKind enum} * used in this class may have constants added to it in the future to * accommodate new, currently unknown, language structures added to - * future versions of the Java™ programming language. + * future versions of the Java programming language. * Therefore, methods whose names begin with {@code "visit"} may be * added to this class in the future; to avoid incompatibilities, * classes and subclasses which extend this class should not declare diff --git a/src/java.compiler/share/classes/javax/lang/model/util/ElementScanner6.java b/src/java.compiler/share/classes/javax/lang/model/util/ElementScanner6.java index 98320e98c97..f19fd560772 100644 --- a/src/java.compiler/share/classes/javax/lang/model/util/ElementScanner6.java +++ b/src/java.compiler/share/classes/javax/lang/model/util/ElementScanner6.java @@ -63,7 +63,7 @@ import static javax.lang.model.SourceVersion.*; *

    WARNING: The {@code ElementVisitor} interface * implemented by this class may have methods added to it in the * future to accommodate new, currently unknown, language structures - * added to future versions of the Java™ programming language. + * added to future versions of the Java programming language. * Therefore, methods whose names begin with {@code "visit"} may be * added to this class in the future; to avoid incompatibilities, * classes which extend this class should not declare any instance diff --git a/src/java.compiler/share/classes/javax/lang/model/util/SimpleAnnotationValueVisitor6.java b/src/java.compiler/share/classes/javax/lang/model/util/SimpleAnnotationValueVisitor6.java index 70328e12bbe..64bbdda4fc4 100644 --- a/src/java.compiler/share/classes/javax/lang/model/util/SimpleAnnotationValueVisitor6.java +++ b/src/java.compiler/share/classes/javax/lang/model/util/SimpleAnnotationValueVisitor6.java @@ -49,7 +49,7 @@ import javax.annotation.processing.SupportedSourceVersion; * AnnotationValueVisitor} interface implemented by this class may * have methods added to it in the future to accommodate new, * currently unknown, language structures added to future versions of - * the Java™ programming language. Therefore, methods whose + * the Java programming language. Therefore, methods whose * names begin with {@code "visit"} may be added to this class in the * future; to avoid incompatibilities, classes and subclasses which * extend this class should not declare any instance methods with diff --git a/src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor6.java b/src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor6.java index 0d851aa49f8..385ace89f5a 100644 --- a/src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor6.java +++ b/src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor6.java @@ -52,7 +52,7 @@ import static javax.lang.model.SourceVersion.*; * ElementVisitor} interface implemented by this class may have * methods added to it in the future to accommodate new, currently * unknown, language structures added to future versions of the - * Java™ programming language. Therefore, methods whose names + * Java programming language. Therefore, methods whose names * begin with {@code "visit"} may be added to this class in the * future; to avoid incompatibilities, classes and subclasses which * extend this class should not declare any instance methods with diff --git a/src/java.compiler/share/classes/javax/lang/model/util/SimpleTypeVisitor6.java b/src/java.compiler/share/classes/javax/lang/model/util/SimpleTypeVisitor6.java index 26e04b567ec..38701ee71fd 100644 --- a/src/java.compiler/share/classes/javax/lang/model/util/SimpleTypeVisitor6.java +++ b/src/java.compiler/share/classes/javax/lang/model/util/SimpleTypeVisitor6.java @@ -50,7 +50,7 @@ import static javax.lang.model.SourceVersion.*; *

    WARNING: The {@code * TypeVisitor} interface implemented by this class may have methods * added to it in the future to accommodate new, currently unknown, - * language structures added to future versions of the Java™ + * language structures added to future versions of the Java * programming language. Therefore, methods whose names begin with * {@code "visit"} may be added to this class in the future; to avoid * incompatibilities, classes and subclasses which extend this class diff --git a/src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor6.java b/src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor6.java index 2cad9f82027..661ecdd6e76 100644 --- a/src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor6.java +++ b/src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor6.java @@ -50,7 +50,7 @@ import static javax.lang.model.SourceVersion.*; * added to it or the {@link TypeKind TypeKind enum} used in this * class may have constants added to it in the future to accommodate * new, currently unknown, language structures added to future - * versions of the Java™ programming language. Therefore, + * versions of the Java programming language. Therefore, * methods whose names begin with {@code "visit"} may be added to this * class in the future; to avoid incompatibilities, classes and * subclasses which extend this class should not declare any instance diff --git a/src/java.compiler/share/classes/javax/tools/Diagnostic.java b/src/java.compiler/share/classes/javax/tools/Diagnostic.java index 4c1e8f8dd4a..2440787b626 100644 --- a/src/java.compiler/share/classes/javax/tools/Diagnostic.java +++ b/src/java.compiler/share/classes/javax/tools/Diagnostic.java @@ -71,7 +71,7 @@ public interface Diagnostic { WARNING, /** * Problem similar to a warning, but is mandated by the tool's - * specification. For example, the Java™ Language + * specification. For example, the Java Language * Specification mandates warnings on certain * unchecked operations and the use of deprecated methods. */ diff --git a/src/java.compiler/share/classes/javax/tools/DocumentationTool.java b/src/java.compiler/share/classes/javax/tools/DocumentationTool.java index a9797fac868..b7e3af636d5 100644 --- a/src/java.compiler/share/classes/javax/tools/DocumentationTool.java +++ b/src/java.compiler/share/classes/javax/tools/DocumentationTool.java @@ -31,7 +31,7 @@ import java.util.Locale; import java.util.concurrent.Callable; /** - * Interface to invoke Java™ programming language documentation tools from + * Interface to invoke Java programming language documentation tools from * programs. * * @since 1.8 diff --git a/src/java.compiler/share/classes/javax/tools/JavaCompiler.java b/src/java.compiler/share/classes/javax/tools/JavaCompiler.java index 7041fb23671..f7c1c61a41b 100644 --- a/src/java.compiler/share/classes/javax/tools/JavaCompiler.java +++ b/src/java.compiler/share/classes/javax/tools/JavaCompiler.java @@ -32,7 +32,7 @@ import java.util.concurrent.Callable; import javax.annotation.processing.Processor; /** - * Interface to invoke Java™ programming language compilers from + * Interface to invoke Java programming language compilers from * programs. * *

    The compiler might generate diagnostics during compilation (for @@ -56,9 +56,9 @@ import javax.annotation.processing.Processor; * #getStandardFileManager getStandardFileManager}. * *

    An instance implementing this interface must conform to - * The Java™ Language Specification + * The Java Language Specification * and generate class files conforming to - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. * The versions of these * specifications are defined in the {@linkplain Tool} interface. * diff --git a/src/java.compiler/share/classes/javax/tools/JavaFileManager.java b/src/java.compiler/share/classes/javax/tools/JavaFileManager.java index 8c4e77c0a2b..a6bf36f2cb8 100644 --- a/src/java.compiler/share/classes/javax/tools/JavaFileManager.java +++ b/src/java.compiler/share/classes/javax/tools/JavaFileManager.java @@ -35,7 +35,7 @@ import java.util.Set; import static javax.tools.JavaFileObject.Kind; /** - * File manager for tools operating on Java™ programming language + * File manager for tools operating on Java programming language * source and class files. In this context, file means an * abstraction of regular files and other sources of data. * @@ -52,14 +52,14 @@ import static javax.tools.JavaFileObject.Kind; * fully qualified class and interface names. For convenience '.' * and '/' are interchangeable. The internal form is defined in * chapter four of - * The Java™ Virtual Machine Specification. + * The Java Virtual Machine Specification. *

    * Discussion: this means that the names * "java/lang.package-info", "java/lang/package-info", * "java.lang.package-info", are valid and equivalent. Compare to * binary name as defined in - * The Java™ Language Specification, + * The Java Language Specification, * section 13.1 "The Form of a Binary". *

    * @@ -222,7 +222,7 @@ public interface JavaFileManager extends Closeable, Flushable, OptionChecker { /** * Infers a binary name of a file object based on a package-oriented location. * The binary name returned might not be a valid binary name according to - * The Java™ Language Specification. + * The Java Language Specification. * * @param location a location * @param file a file object diff --git a/src/java.compiler/share/classes/javax/tools/JavaFileObject.java b/src/java.compiler/share/classes/javax/tools/JavaFileObject.java index f31d0fb658e..14a4fa9e698 100644 --- a/src/java.compiler/share/classes/javax/tools/JavaFileObject.java +++ b/src/java.compiler/share/classes/javax/tools/JavaFileObject.java @@ -30,7 +30,7 @@ import javax.lang.model.element.Modifier; import java.util.Objects; /** - * File abstraction for tools operating on Java™ programming language + * File abstraction for tools operating on Java programming language * source and class files. * *

    All methods in this interface might throw a SecurityException if @@ -94,7 +94,7 @@ public interface JavaFileObject extends FileObject { * Checks if this file object is compatible with the specified * simple name and kind. A simple name is a single identifier * (not qualified) as defined in - * The Java™ Language Specification, + * The Java Language Specification, * section 6.2 "Names and Identifiers". * * @param simpleName a simple name of a class diff --git a/src/java.compiler/share/classes/javax/tools/Tool.java b/src/java.compiler/share/classes/javax/tools/Tool.java index 75ec4fe07be..cb9a79d1645 100644 --- a/src/java.compiler/share/classes/javax/tools/Tool.java +++ b/src/java.compiler/share/classes/javax/tools/Tool.java @@ -76,7 +76,7 @@ public interface Tool { int run(InputStream in, OutputStream out, OutputStream err, String... arguments); /** - * Returns the source versions of the Java™ programming language + * Returns the source versions of the Java programming language * supported by this tool. * @return a set of supported source versions */ diff --git a/src/java.compiler/share/classes/javax/tools/ToolProvider.java b/src/java.compiler/share/classes/javax/tools/ToolProvider.java index 8ca5b1ba254..487a6e8963f 100644 --- a/src/java.compiler/share/classes/javax/tools/ToolProvider.java +++ b/src/java.compiler/share/classes/javax/tools/ToolProvider.java @@ -51,7 +51,7 @@ public class ToolProvider { public ToolProvider() {} /** - * Returns the Java™ programming language compiler provided + * Returns the Java programming language compiler provided * with this platform. *

    The file manager returned by calling * {@link JavaCompiler#getStandardFileManager getStandardFileManager} @@ -72,7 +72,7 @@ public class ToolProvider { private static final String systemDocumentationToolName = "jdk.javadoc.internal.api.JavadocTool"; /** - * Returns the Java™ programming language documentation tool provided + * Returns the Java programming language documentation tool provided * with this platform. *

    The file manager returned by calling * {@link DocumentationTool#getStandardFileManager getStandardFileManager} diff --git a/src/java.compiler/share/classes/javax/tools/package-info.java b/src/java.compiler/share/classes/javax/tools/package-info.java index 52e0704cb64..e7883f9be74 100644 --- a/src/java.compiler/share/classes/javax/tools/package-info.java +++ b/src/java.compiler/share/classes/javax/tools/package-info.java @@ -28,7 +28,7 @@ * for example, compilers. * *

    These interfaces and classes are required as part of the - * Java™ Platform, Standard Edition (Java SE), + * Java Platform, Standard Edition (Java SE), * but there is no requirement to provide any tools implementing them. * *

    Unless explicitly allowed, all methods in this package might diff --git a/src/java.desktop/share/classes/com/sun/beans/TypeResolver.java b/src/java.desktop/share/classes/com/sun/beans/TypeResolver.java index 942ed5d8297..25f07947310 100644 --- a/src/java.desktop/share/classes/com/sun/beans/TypeResolver.java +++ b/src/java.desktop/share/classes/com/sun/beans/TypeResolver.java @@ -224,7 +224,7 @@ public final class TypeResolver { * Converts the given {@code type} to the corresponding class. * This method implements the concept of type erasure, * that is described in section 4.6 of - * The Java™ Language Specification. + * The Java Language Specification. * * @param type the array of types to convert * @return a corresponding class diff --git a/src/java.desktop/share/classes/java/awt/GraphicsDevice.java b/src/java.desktop/share/classes/java/awt/GraphicsDevice.java index 6e3ddf01e62..d878f610fca 100644 --- a/src/java.desktop/share/classes/java/awt/GraphicsDevice.java +++ b/src/java.desktop/share/classes/java/awt/GraphicsDevice.java @@ -160,7 +160,7 @@ public abstract class GraphicsDevice { * {@code GraphicsEnvironment}. Although there is * no public method to set this {@code String}, a programmer can * use the {@code String} for debugging purposes. Vendors of - * the Java™ Runtime Environment can + * the Java Runtime Environment can * format the return value of the {@code String}. To determine * how to interpret the value of the {@code String}, contact the * vendor of your Java Runtime. To find out who the vendor is, from diff --git a/src/java.desktop/share/classes/java/awt/doc-files/AWTThreadIssues.html b/src/java.desktop/share/classes/java/awt/doc-files/AWTThreadIssues.html index 95beae4590a..75ff54a7ffa 100644 --- a/src/java.desktop/share/classes/java/awt/doc-files/AWTThreadIssues.html +++ b/src/java.desktop/share/classes/java/awt/doc-files/AWTThreadIssues.html @@ -47,7 +47,7 @@ newly added listener is only notified on subsequent key events.

    Auto-shutdown

    According to -The Java™ Virtual Machine Specification, +The Java Virtual Machine Specification, sections 2.17.9 and 2.19, the Java virtual machine (JVM) initially starts up with a single non-daemon thread, which typically calls the main method of some class. @@ -190,7 +190,7 @@ non-daemon thread that blocks forever. <...> -The Java™ Virtual Machine Specification +The Java Virtual Machine Specification guarantees that the JVM doesn't exit until this thread terminates. diff --git a/src/java.desktop/share/classes/java/beans/DefaultPersistenceDelegate.java b/src/java.desktop/share/classes/java/beans/DefaultPersistenceDelegate.java index ea0174747b8..42e73c70b48 100644 --- a/src/java.desktop/share/classes/java/beans/DefaultPersistenceDelegate.java +++ b/src/java.desktop/share/classes/java/beans/DefaultPersistenceDelegate.java @@ -36,7 +36,7 @@ import sun.reflect.misc.*; * is the delegate used by default for classes about * which no information is available. The {@code DefaultPersistenceDelegate} * provides, version resilient, public API-based persistence for - * classes that follow the JavaBeans™ conventions without any class specific + * classes that follow the JavaBeans conventions without any class specific * configuration. *

    * The key assumptions are that the class has a nullary constructor diff --git a/src/java.desktop/share/classes/java/beans/DesignMode.java b/src/java.desktop/share/classes/java/beans/DesignMode.java index 55d99ea7dd5..bcc9f756848 100644 --- a/src/java.desktop/share/classes/java/beans/DesignMode.java +++ b/src/java.desktop/share/classes/java/beans/DesignMode.java @@ -31,7 +31,7 @@ package java.beans; * of java.beans.beancontext.BeanContext, in order to propagate to its nested hierarchy * of java.beans.beancontext.BeanContextChild instances, the current "designTime" property. *

    - * The JavaBeans™ specification defines the notion of design time as is a + * The JavaBeans specification defines the notion of design time as is a * mode in which JavaBeans instances should function during their composition * and customization in a interactive design, composition or construction tool, * as opposed to runtime when the JavaBean is part of an applet, application, diff --git a/src/java.desktop/share/classes/java/beans/IndexedPropertyChangeEvent.java b/src/java.desktop/share/classes/java/beans/IndexedPropertyChangeEvent.java index 40d4f9d7cd5..6a96d7dc996 100644 --- a/src/java.desktop/share/classes/java/beans/IndexedPropertyChangeEvent.java +++ b/src/java.desktop/share/classes/java/beans/IndexedPropertyChangeEvent.java @@ -26,7 +26,7 @@ package java.beans; /** * An "IndexedPropertyChange" event gets delivered whenever a component that - * conforms to the JavaBeans™ specification (a "bean") changes a bound + * conforms to the JavaBeans specification (a "bean") changes a bound * indexed property. This class is an extension of {@code PropertyChangeEvent} * but contains the index of the property that has changed. *

    diff --git a/src/java.desktop/share/classes/java/beans/Introspector.java b/src/java.desktop/share/classes/java/beans/Introspector.java index b0013e9ce4d..1faaf47be67 100644 --- a/src/java.desktop/share/classes/java/beans/Introspector.java +++ b/src/java.desktop/share/classes/java/beans/Introspector.java @@ -87,7 +87,7 @@ import sun.reflect.misc.ReflectUtil; *

    * For more information about introspection and design patterns, please * consult the - * JavaBeans™ specification. + * JavaBeans specification. * * @since 1.1 */ @@ -1122,7 +1122,7 @@ public class Introspector { try { type = ClassFinder.findClass(name, type.getClassLoader()); // Each customizer should inherit java.awt.Component and implement java.beans.Customizer - // according to the section 9.3 of JavaBeans™ specification + // according to the section 9.3 of JavaBeans specification if (Component.class.isAssignableFrom(type) && Customizer.class.isAssignableFrom(type)) { return type; } diff --git a/src/java.desktop/share/classes/java/beans/PropertyChangeSupport.java b/src/java.desktop/share/classes/java/beans/PropertyChangeSupport.java index cf7e34ebb4c..0a1a0377dbe 100644 --- a/src/java.desktop/share/classes/java/beans/PropertyChangeSupport.java +++ b/src/java.desktop/share/classes/java/beans/PropertyChangeSupport.java @@ -41,7 +41,7 @@ import java.util.Map.Entry; * or for a property specified by name. *

    * Here is an example of {@code PropertyChangeSupport} usage that follows - * the rules and recommendations laid out in the JavaBeans™ specification: + * the rules and recommendations laid out in the JavaBeans specification: *

      * public class MyBean {
      *     private final PropertyChangeSupport pcs = new PropertyChangeSupport(this);
    diff --git a/src/java.desktop/share/classes/java/beans/VetoableChangeSupport.java b/src/java.desktop/share/classes/java/beans/VetoableChangeSupport.java
    index 18e6ade3b35..cca3458e518 100644
    --- a/src/java.desktop/share/classes/java/beans/VetoableChangeSupport.java
    +++ b/src/java.desktop/share/classes/java/beans/VetoableChangeSupport.java
    @@ -41,7 +41,7 @@ import java.util.Map.Entry;
      * or for a property specified by name.
      * 

    * Here is an example of {@code VetoableChangeSupport} usage that follows - * the rules and recommendations laid out in the JavaBeans™ specification: + * the rules and recommendations laid out in the JavaBeans specification: *

    {@code
      * public class MyBean {
      *     private final VetoableChangeSupport vcs = new VetoableChangeSupport(this);
    diff --git a/src/java.desktop/share/classes/java/beans/package-info.java b/src/java.desktop/share/classes/java/beans/package-info.java
    index d6c904677b3..fefe400e6bf 100644
    --- a/src/java.desktop/share/classes/java/beans/package-info.java
    +++ b/src/java.desktop/share/classes/java/beans/package-info.java
    @@ -25,7 +25,7 @@
     
     /**
      * Contains classes related to developing beans -- components based on
    - * the JavaBeans™ architecture. A few of the classes are used by beans
    + * the JavaBeans architecture. A few of the classes are used by beans
      * while they run in an application. For example, the event classes are used by
      * beans that fire property and vetoable change events (see
      * {@link java.beans.PropertyChangeEvent}). However, most of the classes in this
    diff --git a/src/java.desktop/share/classes/javax/accessibility/package-info.java b/src/java.desktop/share/classes/javax/accessibility/package-info.java
    index c288dea57d9..3e571821a7f 100644
    --- a/src/java.desktop/share/classes/javax/accessibility/package-info.java
    +++ b/src/java.desktop/share/classes/javax/accessibility/package-info.java
    @@ -57,7 +57,7 @@
      * accessible name, description, role, and
      * state of the object, as well as information
      * about the parent and children of the object.  In addition,
    - * JavaBeans™ property change support is also included to allow assistive
    + * JavaBeans property change support is also included to allow assistive
      * technologies learn when the values of the accessible properties change.
      * AccessibleContext also contains methods for obtaining more specific
      * accessibility information about a component. If the component supports it,
    diff --git a/src/java.desktop/share/classes/javax/print/attribute/package-info.java b/src/java.desktop/share/classes/javax/print/attribute/package-info.java
    index 2470175ec21..7f742174cc2 100644
    --- a/src/java.desktop/share/classes/javax/print/attribute/package-info.java
    +++ b/src/java.desktop/share/classes/javax/print/attribute/package-info.java
    @@ -24,7 +24,7 @@
      */
     
     /**
    - * Provides classes and interfaces that describe the types of Java™ Print
    + * Provides classes and interfaces that describe the types of Java Print
      * Service attributes and how they can be collected into attribute sets.
      *
      * 

    What is an Attribute?

    diff --git a/src/java.desktop/share/classes/javax/print/package-info.java b/src/java.desktop/share/classes/javax/print/package-info.java index d0700e766c6..7334ac05655 100644 --- a/src/java.desktop/share/classes/javax/print/package-info.java +++ b/src/java.desktop/share/classes/javax/print/package-info.java @@ -24,7 +24,7 @@ */ /** - * Provides the principal classes and interfaces for the Java™ Print + * Provides the principal classes and interfaces for the Java Print * Service API. The Java Print Service API enables client and server * applications to: *
      diff --git a/src/java.desktop/share/classes/javax/sound/midi/MidiMessage.java b/src/java.desktop/share/classes/javax/sound/midi/MidiMessage.java index cfe6deccebc..0a0989f914c 100644 --- a/src/java.desktop/share/classes/javax/sound/midi/MidiMessage.java +++ b/src/java.desktop/share/classes/javax/sound/midi/MidiMessage.java @@ -48,7 +48,7 @@ package javax.sound.midi; * Setting them is a subclass responsibility. *

      * The MIDI standard expresses MIDI data in bytes. - * However, because Java™ uses signed bytes, the Java Sound API uses + * However, because Java uses signed bytes, the Java Sound API uses * integers instead of bytes when expressing MIDI data. For example, the * {@link #getStatus()} method of {@code MidiMessage} returns MIDI status bytes * as integers. If you are processing MIDI data that originated outside Java diff --git a/src/java.desktop/share/classes/javax/swing/AbstractAction.java b/src/java.desktop/share/classes/javax/swing/AbstractAction.java index 5c8f6e6626f..b831b6bc089 100644 --- a/src/java.desktop/share/classes/javax/swing/AbstractAction.java +++ b/src/java.desktop/share/classes/javax/swing/AbstractAction.java @@ -49,7 +49,7 @@ import sun.security.action.GetPropertyAction; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/AbstractButton.java b/src/java.desktop/share/classes/javax/swing/AbstractButton.java index ed752747526..27317978ab4 100644 --- a/src/java.desktop/share/classes/javax/swing/AbstractButton.java +++ b/src/java.desktop/share/classes/javax/swing/AbstractButton.java @@ -62,7 +62,7 @@ import javax.swing.text.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1918,7 +1918,7 @@ public abstract class AbstractButton extends JComponent implements ItemSelectabl * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -2341,7 +2341,7 @@ public abstract class AbstractButton extends JComponent implements ItemSelectabl * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @since 1.4 diff --git a/src/java.desktop/share/classes/javax/swing/AbstractCellEditor.java b/src/java.desktop/share/classes/javax/swing/AbstractCellEditor.java index 9479eb06694..5fb32121c19 100644 --- a/src/java.desktop/share/classes/javax/swing/AbstractCellEditor.java +++ b/src/java.desktop/share/classes/javax/swing/AbstractCellEditor.java @@ -43,7 +43,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/AbstractListModel.java b/src/java.desktop/share/classes/javax/swing/AbstractListModel.java index 71a8895d37e..c7d36481864 100644 --- a/src/java.desktop/share/classes/javax/swing/AbstractListModel.java +++ b/src/java.desktop/share/classes/javax/swing/AbstractListModel.java @@ -38,7 +38,7 @@ import java.util.EventListener; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/Box.java b/src/java.desktop/share/classes/javax/swing/Box.java index 246b4439a08..9db52ce9a0e 100644 --- a/src/java.desktop/share/classes/javax/swing/Box.java +++ b/src/java.desktop/share/classes/javax/swing/Box.java @@ -65,7 +65,7 @@ import javax.accessibility.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -297,7 +297,7 @@ public class Box extends JComponent implements Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/BoxLayout.java b/src/java.desktop/share/classes/javax/swing/BoxLayout.java index f0635f19f6b..bc84a4fa582 100644 --- a/src/java.desktop/share/classes/javax/swing/BoxLayout.java +++ b/src/java.desktop/share/classes/javax/swing/BoxLayout.java @@ -121,7 +121,7 @@ import java.io.PrintStream; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the {@code java.beans} package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/ButtonGroup.java b/src/java.desktop/share/classes/javax/swing/ButtonGroup.java index ed2820df412..6555196621e 100644 --- a/src/java.desktop/share/classes/javax/swing/ButtonGroup.java +++ b/src/java.desktop/share/classes/javax/swing/ButtonGroup.java @@ -59,7 +59,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/CellRendererPane.java b/src/java.desktop/share/classes/javax/swing/CellRendererPane.java index c21a282bf29..f53a1e89b87 100644 --- a/src/java.desktop/share/classes/javax/swing/CellRendererPane.java +++ b/src/java.desktop/share/classes/javax/swing/CellRendererPane.java @@ -57,7 +57,7 @@ import javax.accessibility.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/DefaultBoundedRangeModel.java b/src/java.desktop/share/classes/javax/swing/DefaultBoundedRangeModel.java index 20f44a28ea3..7e254d5c8b3 100644 --- a/src/java.desktop/share/classes/javax/swing/DefaultBoundedRangeModel.java +++ b/src/java.desktop/share/classes/javax/swing/DefaultBoundedRangeModel.java @@ -37,7 +37,7 @@ import java.util.EventListener; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/DefaultButtonModel.java b/src/java.desktop/share/classes/javax/swing/DefaultButtonModel.java index 5bcf6efb407..453b1d0ab0e 100644 --- a/src/java.desktop/share/classes/javax/swing/DefaultButtonModel.java +++ b/src/java.desktop/share/classes/javax/swing/DefaultButtonModel.java @@ -39,7 +39,7 @@ import javax.swing.event.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/DefaultCellEditor.java b/src/java.desktop/share/classes/javax/swing/DefaultCellEditor.java index 6114760c8a7..d8d9af91b9c 100644 --- a/src/java.desktop/share/classes/javax/swing/DefaultCellEditor.java +++ b/src/java.desktop/share/classes/javax/swing/DefaultCellEditor.java @@ -43,7 +43,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/DefaultListCellRenderer.java b/src/java.desktop/share/classes/javax/swing/DefaultListCellRenderer.java index 6b141491720..1d6a96c25c9 100644 --- a/src/java.desktop/share/classes/javax/swing/DefaultListCellRenderer.java +++ b/src/java.desktop/share/classes/javax/swing/DefaultListCellRenderer.java @@ -63,7 +63,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -343,7 +343,7 @@ public class DefaultListCellRenderer extends JLabel * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/DefaultListModel.java b/src/java.desktop/share/classes/javax/swing/DefaultListModel.java index 3d27365ca4d..1678a14893f 100644 --- a/src/java.desktop/share/classes/javax/swing/DefaultListModel.java +++ b/src/java.desktop/share/classes/javax/swing/DefaultListModel.java @@ -43,7 +43,7 @@ import java.util.Enumeration; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the {@code java.beans} package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/DefaultListSelectionModel.java b/src/java.desktop/share/classes/javax/swing/DefaultListSelectionModel.java index 312eec84051..2933eefab62 100644 --- a/src/java.desktop/share/classes/javax/swing/DefaultListSelectionModel.java +++ b/src/java.desktop/share/classes/javax/swing/DefaultListSelectionModel.java @@ -41,7 +41,7 @@ import javax.swing.event.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/DefaultSingleSelectionModel.java b/src/java.desktop/share/classes/javax/swing/DefaultSingleSelectionModel.java index 023e9f3db5a..643e54d6465 100644 --- a/src/java.desktop/share/classes/javax/swing/DefaultSingleSelectionModel.java +++ b/src/java.desktop/share/classes/javax/swing/DefaultSingleSelectionModel.java @@ -37,7 +37,7 @@ import java.util.EventListener; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/ImageIcon.java b/src/java.desktop/share/classes/javax/swing/ImageIcon.java index 860235fefd8..fd0387c5ff4 100644 --- a/src/java.desktop/share/classes/javax/swing/ImageIcon.java +++ b/src/java.desktop/share/classes/javax/swing/ImageIcon.java @@ -60,7 +60,7 @@ import sun.awt.AWTAccessor; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -587,7 +587,7 @@ public class ImageIcon implements Icon, Serializable, Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @since 1.3 diff --git a/src/java.desktop/share/classes/javax/swing/JApplet.java b/src/java.desktop/share/classes/javax/swing/JApplet.java index 7538b0fcf00..8d9e1b21d2b 100644 --- a/src/java.desktop/share/classes/javax/swing/JApplet.java +++ b/src/java.desktop/share/classes/javax/swing/JApplet.java @@ -85,7 +85,7 @@ import javax.accessibility.AccessibleContext; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/JButton.java b/src/java.desktop/share/classes/javax/swing/JButton.java index 6dd07fe654c..f2008407610 100644 --- a/src/java.desktop/share/classes/javax/swing/JButton.java +++ b/src/java.desktop/share/classes/javax/swing/JButton.java @@ -60,7 +60,7 @@ import java.io.IOException; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -294,7 +294,7 @@ public class JButton extends AbstractButton implements Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JCheckBox.java b/src/java.desktop/share/classes/javax/swing/JCheckBox.java index d561349297a..3d2eefd1937 100644 --- a/src/java.desktop/share/classes/javax/swing/JCheckBox.java +++ b/src/java.desktop/share/classes/javax/swing/JCheckBox.java @@ -61,7 +61,7 @@ import java.io.IOException; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -325,7 +325,7 @@ public class JCheckBox extends JToggleButton implements Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JCheckBoxMenuItem.java b/src/java.desktop/share/classes/javax/swing/JCheckBoxMenuItem.java index c705b2a4eee..4bc65f8eb86 100644 --- a/src/java.desktop/share/classes/javax/swing/JCheckBoxMenuItem.java +++ b/src/java.desktop/share/classes/javax/swing/JCheckBoxMenuItem.java @@ -83,7 +83,7 @@ import javax.accessibility.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -298,7 +298,7 @@ public class JCheckBoxMenuItem extends JMenuItem implements SwingConstants, * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JColorChooser.java b/src/java.desktop/share/classes/javax/swing/JColorChooser.java index 0d3b7d5f7e2..53eea9edd06 100644 --- a/src/java.desktop/share/classes/javax/swing/JColorChooser.java +++ b/src/java.desktop/share/classes/javax/swing/JColorChooser.java @@ -69,7 +69,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/JComboBox.java b/src/java.desktop/share/classes/javax/swing/JComboBox.java index f1a7da63525..7611ae5d4c4 100644 --- a/src/java.desktop/share/classes/javax/swing/JComboBox.java +++ b/src/java.desktop/share/classes/javax/swing/JComboBox.java @@ -59,7 +59,7 @@ import javax.accessibility.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1640,7 +1640,7 @@ implements ItemSelectable,ListDataListener,ActionListener, Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JComponent.java b/src/java.desktop/share/classes/javax/swing/JComponent.java index b582c8119a9..c130afd6603 100644 --- a/src/java.desktop/share/classes/javax/swing/JComponent.java +++ b/src/java.desktop/share/classes/javax/swing/JComponent.java @@ -155,7 +155,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -3674,7 +3674,7 @@ public abstract class JComponent extends Container implements Serializable, * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JDesktopPane.java b/src/java.desktop/share/classes/javax/swing/JDesktopPane.java index 64dcc2ae334..6bf5d5e4814 100644 --- a/src/java.desktop/share/classes/javax/swing/JDesktopPane.java +++ b/src/java.desktop/share/classes/javax/swing/JDesktopPane.java @@ -75,7 +75,7 @@ import java.util.LinkedHashSet; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -620,7 +620,7 @@ public class JDesktopPane extends JLayeredPane implements Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JDialog.java b/src/java.desktop/share/classes/javax/swing/JDialog.java index 8ab1252895b..0cf46f45430 100644 --- a/src/java.desktop/share/classes/javax/swing/JDialog.java +++ b/src/java.desktop/share/classes/javax/swing/JDialog.java @@ -80,7 +80,7 @@ import javax.accessibility.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the {@code java.beans} package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/JEditorPane.java b/src/java.desktop/share/classes/javax/swing/JEditorPane.java index 50702eea7c3..3facbcbf0c9 100644 --- a/src/java.desktop/share/classes/javax/swing/JEditorPane.java +++ b/src/java.desktop/share/classes/javax/swing/JEditorPane.java @@ -178,7 +178,7 @@ import sun.reflect.misc.ReflectUtil; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1652,7 +1652,7 @@ public class JEditorPane extends JTextComponent { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -1707,7 +1707,7 @@ public class JEditorPane extends JTextComponent { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JFormattedTextField.java b/src/java.desktop/share/classes/javax/swing/JFormattedTextField.java index e511fb16630..0f6a3417d22 100644 --- a/src/java.desktop/share/classes/javax/swing/JFormattedTextField.java +++ b/src/java.desktop/share/classes/javax/swing/JFormattedTextField.java @@ -185,7 +185,7 @@ import javax.swing.text.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/JFrame.java b/src/java.desktop/share/classes/javax/swing/JFrame.java index a3b849fe26d..dc24e577001 100644 --- a/src/java.desktop/share/classes/javax/swing/JFrame.java +++ b/src/java.desktop/share/classes/javax/swing/JFrame.java @@ -104,7 +104,7 @@ import javax.accessibility.AccessibleStateSet; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/JInternalFrame.java b/src/java.desktop/share/classes/javax/swing/JInternalFrame.java index 3f12e0dccc9..51cefb0c499 100644 --- a/src/java.desktop/share/classes/javax/swing/JInternalFrame.java +++ b/src/java.desktop/share/classes/javax/swing/JInternalFrame.java @@ -89,7 +89,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -2003,7 +2003,7 @@ public class JInternalFrame extends JComponent implements * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -2119,7 +2119,7 @@ public class JInternalFrame extends JComponent implements * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -2294,7 +2294,7 @@ public class JInternalFrame extends JComponent implements * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JLabel.java b/src/java.desktop/share/classes/javax/swing/JLabel.java index 128e38e63e2..0bef45440fa 100644 --- a/src/java.desktop/share/classes/javax/swing/JLabel.java +++ b/src/java.desktop/share/classes/javax/swing/JLabel.java @@ -89,7 +89,7 @@ import javax.swing.text.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1035,7 +1035,7 @@ public class JLabel extends JComponent implements SwingConstants, Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JLayeredPane.java b/src/java.desktop/share/classes/javax/swing/JLayeredPane.java index b26d291e121..62475ae854b 100644 --- a/src/java.desktop/share/classes/javax/swing/JLayeredPane.java +++ b/src/java.desktop/share/classes/javax/swing/JLayeredPane.java @@ -148,7 +148,7 @@ import javax.accessibility.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -759,7 +759,7 @@ public class JLayeredPane extends JComponent implements Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JList.java b/src/java.desktop/share/classes/javax/swing/JList.java index 3539d89f0f7..e3d34bd3db2 100644 --- a/src/java.desktop/share/classes/javax/swing/JList.java +++ b/src/java.desktop/share/classes/javax/swing/JList.java @@ -254,7 +254,7 @@ import static sun.swing.SwingUtilities2.Section.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. *

      @@ -2883,7 +2883,7 @@ public class JList extends JComponent implements Scrollable, Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JMenu.java b/src/java.desktop/share/classes/javax/swing/JMenu.java index 67c2262ce29..58c244b6710 100644 --- a/src/java.desktop/share/classes/javax/swing/JMenu.java +++ b/src/java.desktop/share/classes/javax/swing/JMenu.java @@ -86,7 +86,7 @@ import javax.accessibility.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1148,7 +1148,7 @@ public class JMenu extends JMenuItem implements Accessible,MenuElement * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -1387,7 +1387,7 @@ public class JMenu extends JMenuItem implements Accessible,MenuElement * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JMenuBar.java b/src/java.desktop/share/classes/javax/swing/JMenuBar.java index 3763251dd28..81f1fb2b559 100644 --- a/src/java.desktop/share/classes/javax/swing/JMenuBar.java +++ b/src/java.desktop/share/classes/javax/swing/JMenuBar.java @@ -65,7 +65,7 @@ import sun.awt.SunToolkit; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. *

      @@ -502,7 +502,7 @@ public class JMenuBar extends JComponent implements Accessible,MenuElement * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JMenuItem.java b/src/java.desktop/share/classes/javax/swing/JMenuItem.java index 1193479a9bd..4d650698bf9 100644 --- a/src/java.desktop/share/classes/javax/swing/JMenuItem.java +++ b/src/java.desktop/share/classes/javax/swing/JMenuItem.java @@ -69,7 +69,7 @@ import javax.accessibility.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -819,7 +819,7 @@ public class JMenuItem extends AbstractButton implements Accessible,MenuElement * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JOptionPane.java b/src/java.desktop/share/classes/javax/swing/JOptionPane.java index 7faa087ca83..666e2a05119 100644 --- a/src/java.desktop/share/classes/javax/swing/JOptionPane.java +++ b/src/java.desktop/share/classes/javax/swing/JOptionPane.java @@ -295,7 +295,7 @@ import sun.awt.AWTAccessor; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -2540,7 +2540,7 @@ public class JOptionPane extends JComponent implements Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JPanel.java b/src/java.desktop/share/classes/javax/swing/JPanel.java index ebf5992afc7..9fe307c30db 100644 --- a/src/java.desktop/share/classes/javax/swing/JPanel.java +++ b/src/java.desktop/share/classes/javax/swing/JPanel.java @@ -52,7 +52,7 @@ import java.io.IOException; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -226,7 +226,7 @@ public class JPanel extends JComponent implements Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JPasswordField.java b/src/java.desktop/share/classes/javax/swing/JPasswordField.java index 01ff03a0b48..4d81295b6c5 100644 --- a/src/java.desktop/share/classes/javax/swing/JPasswordField.java +++ b/src/java.desktop/share/classes/javax/swing/JPasswordField.java @@ -63,7 +63,7 @@ import java.util.Arrays; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -400,7 +400,7 @@ public class JPasswordField extends JTextField { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JPopupMenu.java b/src/java.desktop/share/classes/javax/swing/JPopupMenu.java index 36b8fee50e0..500749c6692 100644 --- a/src/java.desktop/share/classes/javax/swing/JPopupMenu.java +++ b/src/java.desktop/share/classes/javax/swing/JPopupMenu.java @@ -67,7 +67,7 @@ import sun.awt.SunToolkit; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/JProgressBar.java b/src/java.desktop/share/classes/javax/swing/JProgressBar.java index 828bb23cc87..7d391288569 100644 --- a/src/java.desktop/share/classes/javax/swing/JProgressBar.java +++ b/src/java.desktop/share/classes/javax/swing/JProgressBar.java @@ -112,7 +112,7 @@ import javax.swing.plaf.ProgressBarUI; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -626,7 +626,7 @@ public class JProgressBar extends JComponent implements SwingConstants, Accessib * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -1003,7 +1003,7 @@ public class JProgressBar extends JComponent implements SwingConstants, Accessib * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JRadioButton.java b/src/java.desktop/share/classes/javax/swing/JRadioButton.java index 4d7913b2f03..c85573c87ec 100644 --- a/src/java.desktop/share/classes/javax/swing/JRadioButton.java +++ b/src/java.desktop/share/classes/javax/swing/JRadioButton.java @@ -71,7 +71,7 @@ import java.io.IOException; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -278,7 +278,7 @@ public class JRadioButton extends JToggleButton implements Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JRadioButtonMenuItem.java b/src/java.desktop/share/classes/javax/swing/JRadioButtonMenuItem.java index 1d31c1e6990..13953db6b48 100644 --- a/src/java.desktop/share/classes/javax/swing/JRadioButtonMenuItem.java +++ b/src/java.desktop/share/classes/javax/swing/JRadioButtonMenuItem.java @@ -77,7 +77,7 @@ import javax.accessibility.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -272,7 +272,7 @@ public class JRadioButtonMenuItem extends JMenuItem implements Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JRootPane.java b/src/java.desktop/share/classes/javax/swing/JRootPane.java index fc229f6b46d..6275219a101 100644 --- a/src/java.desktop/share/classes/javax/swing/JRootPane.java +++ b/src/java.desktop/share/classes/javax/swing/JRootPane.java @@ -178,7 +178,7 @@ import sun.security.action.GetBooleanAction; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -840,7 +840,7 @@ public class JRootPane extends JComponent implements Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -1006,7 +1006,7 @@ public class JRootPane extends JComponent implements Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JScrollBar.java b/src/java.desktop/share/classes/javax/swing/JScrollBar.java index 06158d575a8..6fb1f3df50f 100644 --- a/src/java.desktop/share/classes/javax/swing/JScrollBar.java +++ b/src/java.desktop/share/classes/javax/swing/JScrollBar.java @@ -64,7 +64,7 @@ import java.io.IOException; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -847,7 +847,7 @@ public class JScrollBar extends JComponent implements Adjustable, Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JScrollPane.java b/src/java.desktop/share/classes/javax/swing/JScrollPane.java index ca32be81338..1134392db65 100644 --- a/src/java.desktop/share/classes/javax/swing/JScrollPane.java +++ b/src/java.desktop/share/classes/javax/swing/JScrollPane.java @@ -144,7 +144,7 @@ import java.beans.Transient; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -656,7 +656,7 @@ public class JScrollPane extends JComponent implements ScrollPaneConstants, Acce * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1401,7 +1401,7 @@ public class JScrollPane extends JComponent implements ScrollPaneConstants, Acce * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JSeparator.java b/src/java.desktop/share/classes/javax/swing/JSeparator.java index 6f0ab1409da..4b44496d624 100644 --- a/src/java.desktop/share/classes/javax/swing/JSeparator.java +++ b/src/java.desktop/share/classes/javax/swing/JSeparator.java @@ -59,7 +59,7 @@ import java.io.IOException; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -270,7 +270,7 @@ public class JSeparator extends JComponent implements SwingConstants, Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JSlider.java b/src/java.desktop/share/classes/javax/swing/JSlider.java index 613f7bdacf9..7ad672ba483 100644 --- a/src/java.desktop/share/classes/javax/swing/JSlider.java +++ b/src/java.desktop/share/classes/javax/swing/JSlider.java @@ -69,7 +69,7 @@ import java.beans.PropertyChangeListener; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1407,7 +1407,7 @@ public class JSlider extends JComponent implements SwingConstants, Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JSpinner.java b/src/java.desktop/share/classes/javax/swing/JSpinner.java index d275d60f5e1..ed78619f2e5 100644 --- a/src/java.desktop/share/classes/javax/swing/JSpinner.java +++ b/src/java.desktop/share/classes/javax/swing/JSpinner.java @@ -106,7 +106,7 @@ import sun.util.locale.provider.LocaleResources; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/JSplitPane.java b/src/java.desktop/share/classes/javax/swing/JSplitPane.java index ef0142aee2a..517562fa817 100644 --- a/src/java.desktop/share/classes/javax/swing/JSplitPane.java +++ b/src/java.desktop/share/classes/javax/swing/JSplitPane.java @@ -84,7 +84,7 @@ import java.io.IOException; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1128,7 +1128,7 @@ public class JSplitPane extends JComponent implements Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JTabbedPane.java b/src/java.desktop/share/classes/javax/swing/JTabbedPane.java index e22cce9fab1..de68e2a7d0a 100644 --- a/src/java.desktop/share/classes/javax/swing/JTabbedPane.java +++ b/src/java.desktop/share/classes/javax/swing/JTabbedPane.java @@ -117,7 +117,7 @@ import java.io.IOException; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1921,7 +1921,7 @@ public class JTabbedPane extends JComponent * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JTable.java b/src/java.desktop/share/classes/javax/swing/JTable.java index f4e323840e6..9fbc47be394 100644 --- a/src/java.desktop/share/classes/javax/swing/JTable.java +++ b/src/java.desktop/share/classes/javax/swing/JTable.java @@ -206,7 +206,7 @@ import sun.swing.PrintingStatus; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -6651,7 +6651,7 @@ public class JTable extends JComponent implements TableModelListener, Scrollable * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JTextArea.java b/src/java.desktop/share/classes/javax/swing/JTextArea.java index bf45f26ab76..4b9ba807e63 100644 --- a/src/java.desktop/share/classes/javax/swing/JTextArea.java +++ b/src/java.desktop/share/classes/javax/swing/JTextArea.java @@ -107,7 +107,7 @@ import java.io.IOException; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -776,7 +776,7 @@ public class JTextArea extends JTextComponent { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JTextField.java b/src/java.desktop/share/classes/javax/swing/JTextField.java index c857101709e..c54cef64217 100644 --- a/src/java.desktop/share/classes/javax/swing/JTextField.java +++ b/src/java.desktop/share/classes/javax/swing/JTextField.java @@ -147,7 +147,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -943,7 +943,7 @@ public class JTextField extends JTextComponent implements SwingConstants { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JTextPane.java b/src/java.desktop/share/classes/javax/swing/JTextPane.java index 1688407ab00..d900103078a 100644 --- a/src/java.desktop/share/classes/javax/swing/JTextPane.java +++ b/src/java.desktop/share/classes/javax/swing/JTextPane.java @@ -65,7 +65,7 @@ import javax.swing.text.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/JToggleButton.java b/src/java.desktop/share/classes/javax/swing/JToggleButton.java index 0fd27d8ed10..d8e9d6c010a 100644 --- a/src/java.desktop/share/classes/javax/swing/JToggleButton.java +++ b/src/java.desktop/share/classes/javax/swing/JToggleButton.java @@ -64,7 +64,7 @@ import java.util.Iterator; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -309,7 +309,7 @@ public class JToggleButton extends AbstractButton implements Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -472,7 +472,7 @@ public class JToggleButton extends AbstractButton implements Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JToolBar.java b/src/java.desktop/share/classes/javax/swing/JToolBar.java index 0b2ae558ed0..e503e0788aa 100644 --- a/src/java.desktop/share/classes/javax/swing/JToolBar.java +++ b/src/java.desktop/share/classes/javax/swing/JToolBar.java @@ -69,7 +69,7 @@ import java.io.IOException; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/JToolTip.java b/src/java.desktop/share/classes/javax/swing/JToolTip.java index d52fdab2d4a..3ae2d100e89 100644 --- a/src/java.desktop/share/classes/javax/swing/JToolTip.java +++ b/src/java.desktop/share/classes/javax/swing/JToolTip.java @@ -60,7 +60,7 @@ import java.util.Objects; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -254,7 +254,7 @@ public class JToolTip extends JComponent implements Accessible { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JTree.java b/src/java.desktop/share/classes/javax/swing/JTree.java index 01134ec62ed..1548ecc6e59 100644 --- a/src/java.desktop/share/classes/javax/swing/JTree.java +++ b/src/java.desktop/share/classes/javax/swing/JTree.java @@ -134,7 +134,7 @@ import static sun.swing.SwingUtilities2.Section.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. *

      @@ -3312,7 +3312,7 @@ public class JTree extends JComponent implements Scrollable, Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -3434,7 +3434,7 @@ public class JTree extends JComponent implements Scrollable, Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -3954,7 +3954,7 @@ public class JTree extends JComponent implements Scrollable, Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -4190,7 +4190,7 @@ public class JTree extends JComponent implements Scrollable, Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JViewport.java b/src/java.desktop/share/classes/javax/swing/JViewport.java index 6ad3f2b38a3..14fdf3b57d1 100644 --- a/src/java.desktop/share/classes/javax/swing/JViewport.java +++ b/src/java.desktop/share/classes/javax/swing/JViewport.java @@ -102,7 +102,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1398,7 +1398,7 @@ public class JViewport extends JComponent implements Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -1869,7 +1869,7 @@ public class JViewport extends JComponent implements Accessible * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/JWindow.java b/src/java.desktop/share/classes/javax/swing/JWindow.java index 2214f11d25e..7db6227dca4 100644 --- a/src/java.desktop/share/classes/javax/swing/JWindow.java +++ b/src/java.desktop/share/classes/javax/swing/JWindow.java @@ -75,7 +75,7 @@ import javax.accessibility.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/KeyStroke.java b/src/java.desktop/share/classes/javax/swing/KeyStroke.java index ebe6a126e55..94523beda6f 100644 --- a/src/java.desktop/share/classes/javax/swing/KeyStroke.java +++ b/src/java.desktop/share/classes/javax/swing/KeyStroke.java @@ -52,7 +52,7 @@ import sun.swing.SwingAccessor; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/OverlayLayout.java b/src/java.desktop/share/classes/javax/swing/OverlayLayout.java index 4d3891ae19d..0067f6fd6bd 100644 --- a/src/java.desktop/share/classes/javax/swing/OverlayLayout.java +++ b/src/java.desktop/share/classes/javax/swing/OverlayLayout.java @@ -45,7 +45,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/ScrollPaneLayout.java b/src/java.desktop/share/classes/javax/swing/ScrollPaneLayout.java index 1d499be1b6d..ef906e40997 100644 --- a/src/java.desktop/share/classes/javax/swing/ScrollPaneLayout.java +++ b/src/java.desktop/share/classes/javax/swing/ScrollPaneLayout.java @@ -48,7 +48,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/SizeRequirements.java b/src/java.desktop/share/classes/javax/swing/SizeRequirements.java index a592ef6b563..d722c0b8a70 100644 --- a/src/java.desktop/share/classes/javax/swing/SizeRequirements.java +++ b/src/java.desktop/share/classes/javax/swing/SizeRequirements.java @@ -81,7 +81,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/Spring.java b/src/java.desktop/share/classes/javax/swing/Spring.java index e8a6805f970..cf28f97b673 100644 --- a/src/java.desktop/share/classes/javax/swing/Spring.java +++ b/src/java.desktop/share/classes/javax/swing/Spring.java @@ -117,7 +117,7 @@ import java.awt.Component; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/SpringLayout.java b/src/java.desktop/share/classes/javax/swing/SpringLayout.java index cbb94dafb88..27641690e22 100644 --- a/src/java.desktop/share/classes/javax/swing/SpringLayout.java +++ b/src/java.desktop/share/classes/javax/swing/SpringLayout.java @@ -172,7 +172,7 @@ import java.util.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/Timer.java b/src/java.desktop/share/classes/javax/swing/Timer.java index ab87f753596..9e4ee0fc466 100644 --- a/src/java.desktop/share/classes/javax/swing/Timer.java +++ b/src/java.desktop/share/classes/javax/swing/Timer.java @@ -130,7 +130,7 @@ import javax.swing.event.EventListenerList; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/UIDefaults.java b/src/java.desktop/share/classes/javax/swing/UIDefaults.java index c9b1d2b0142..3141499d7db 100644 --- a/src/java.desktop/share/classes/javax/swing/UIDefaults.java +++ b/src/java.desktop/share/classes/javax/swing/UIDefaults.java @@ -67,7 +67,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/UIManager.java b/src/java.desktop/share/classes/javax/swing/UIManager.java index f7ae6864b41..1633b34ed2e 100644 --- a/src/java.desktop/share/classes/javax/swing/UIManager.java +++ b/src/java.desktop/share/classes/javax/swing/UIManager.java @@ -168,7 +168,7 @@ import sun.awt.AWTAccessor; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/UnsupportedLookAndFeelException.java b/src/java.desktop/share/classes/javax/swing/UnsupportedLookAndFeelException.java index e28166cd2db..a82c97d9940 100644 --- a/src/java.desktop/share/classes/javax/swing/UnsupportedLookAndFeelException.java +++ b/src/java.desktop/share/classes/javax/swing/UnsupportedLookAndFeelException.java @@ -33,7 +33,7 @@ package javax.swing; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/ViewportLayout.java b/src/java.desktop/share/classes/javax/swing/ViewportLayout.java index 7ed68ea48b9..283c06bec9d 100644 --- a/src/java.desktop/share/classes/javax/swing/ViewportLayout.java +++ b/src/java.desktop/share/classes/javax/swing/ViewportLayout.java @@ -50,7 +50,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/border/AbstractBorder.java b/src/java.desktop/share/classes/javax/swing/border/AbstractBorder.java index b329c077efd..9ee45d28651 100644 --- a/src/java.desktop/share/classes/javax/swing/border/AbstractBorder.java +++ b/src/java.desktop/share/classes/javax/swing/border/AbstractBorder.java @@ -40,7 +40,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/border/BevelBorder.java b/src/java.desktop/share/classes/javax/swing/border/BevelBorder.java index c3ebf0ed16b..84f2969a24a 100644 --- a/src/java.desktop/share/classes/javax/swing/border/BevelBorder.java +++ b/src/java.desktop/share/classes/javax/swing/border/BevelBorder.java @@ -38,7 +38,7 @@ import java.beans.ConstructorProperties; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/border/CompoundBorder.java b/src/java.desktop/share/classes/javax/swing/border/CompoundBorder.java index acd172b324a..4353d7c3f28 100644 --- a/src/java.desktop/share/classes/javax/swing/border/CompoundBorder.java +++ b/src/java.desktop/share/classes/javax/swing/border/CompoundBorder.java @@ -48,7 +48,7 @@ import java.beans.ConstructorProperties; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/border/EmptyBorder.java b/src/java.desktop/share/classes/javax/swing/border/EmptyBorder.java index f3133074a42..530856d2ddb 100644 --- a/src/java.desktop/share/classes/javax/swing/border/EmptyBorder.java +++ b/src/java.desktop/share/classes/javax/swing/border/EmptyBorder.java @@ -40,7 +40,7 @@ import java.beans.ConstructorProperties; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/border/EtchedBorder.java b/src/java.desktop/share/classes/javax/swing/border/EtchedBorder.java index e9f979faef3..854e3d6c54d 100644 --- a/src/java.desktop/share/classes/javax/swing/border/EtchedBorder.java +++ b/src/java.desktop/share/classes/javax/swing/border/EtchedBorder.java @@ -44,7 +44,7 @@ import java.beans.ConstructorProperties; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/border/LineBorder.java b/src/java.desktop/share/classes/javax/swing/border/LineBorder.java index 9c5fa739383..6d4fa299ba4 100644 --- a/src/java.desktop/share/classes/javax/swing/border/LineBorder.java +++ b/src/java.desktop/share/classes/javax/swing/border/LineBorder.java @@ -44,7 +44,7 @@ import java.beans.ConstructorProperties; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/border/MatteBorder.java b/src/java.desktop/share/classes/javax/swing/border/MatteBorder.java index c941f2778d8..57f3501b870 100644 --- a/src/java.desktop/share/classes/javax/swing/border/MatteBorder.java +++ b/src/java.desktop/share/classes/javax/swing/border/MatteBorder.java @@ -40,7 +40,7 @@ import javax.swing.Icon; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/border/SoftBevelBorder.java b/src/java.desktop/share/classes/javax/swing/border/SoftBevelBorder.java index 8cd3afdd799..6108efc56f4 100644 --- a/src/java.desktop/share/classes/javax/swing/border/SoftBevelBorder.java +++ b/src/java.desktop/share/classes/javax/swing/border/SoftBevelBorder.java @@ -40,7 +40,7 @@ import java.beans.ConstructorProperties; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/border/StrokeBorder.java b/src/java.desktop/share/classes/javax/swing/border/StrokeBorder.java index 447779ac85c..e0e59237372 100644 --- a/src/java.desktop/share/classes/javax/swing/border/StrokeBorder.java +++ b/src/java.desktop/share/classes/javax/swing/border/StrokeBorder.java @@ -42,7 +42,7 @@ import java.beans.ConstructorProperties; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI * between applications running the same version of Swing. - * As of 1.4, support for long term storage of all JavaBeans™ + * As of 1.4, support for long term storage of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/border/TitledBorder.java b/src/java.desktop/share/classes/javax/swing/border/TitledBorder.java index 79a766fa6e4..e1f94783e2a 100644 --- a/src/java.desktop/share/classes/javax/swing/border/TitledBorder.java +++ b/src/java.desktop/share/classes/javax/swing/border/TitledBorder.java @@ -65,7 +65,7 @@ import jdk.internal.ref.CleanerFactory; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/colorchooser/AbstractColorChooserPanel.java b/src/java.desktop/share/classes/javax/swing/colorchooser/AbstractColorChooserPanel.java index b3fda891612..6bfcea54b21 100644 --- a/src/java.desktop/share/classes/javax/swing/colorchooser/AbstractColorChooserPanel.java +++ b/src/java.desktop/share/classes/javax/swing/colorchooser/AbstractColorChooserPanel.java @@ -41,7 +41,7 @@ import javax.swing.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/colorchooser/ColorChooserComponentFactory.java b/src/java.desktop/share/classes/javax/swing/colorchooser/ColorChooserComponentFactory.java index f1046c845fc..eb3920857a6 100644 --- a/src/java.desktop/share/classes/javax/swing/colorchooser/ColorChooserComponentFactory.java +++ b/src/java.desktop/share/classes/javax/swing/colorchooser/ColorChooserComponentFactory.java @@ -37,7 +37,7 @@ import javax.swing.JComponent; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/colorchooser/DefaultPreviewPanel.java b/src/java.desktop/share/classes/javax/swing/colorchooser/DefaultPreviewPanel.java index 2abba55060b..30b81e076b7 100644 --- a/src/java.desktop/share/classes/javax/swing/colorchooser/DefaultPreviewPanel.java +++ b/src/java.desktop/share/classes/javax/swing/colorchooser/DefaultPreviewPanel.java @@ -46,7 +46,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/colorchooser/DefaultSwatchChooserPanel.java b/src/java.desktop/share/classes/javax/swing/colorchooser/DefaultSwatchChooserPanel.java index c8716f13c84..ce0d82bbe0f 100644 --- a/src/java.desktop/share/classes/javax/swing/colorchooser/DefaultSwatchChooserPanel.java +++ b/src/java.desktop/share/classes/javax/swing/colorchooser/DefaultSwatchChooserPanel.java @@ -45,7 +45,7 @@ import javax.accessibility.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/AncestorEvent.java b/src/java.desktop/share/classes/javax/swing/event/AncestorEvent.java index d6f7ab08c28..41c833b63af 100644 --- a/src/java.desktop/share/classes/javax/swing/event/AncestorEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/AncestorEvent.java @@ -37,7 +37,7 @@ import javax.swing.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/CaretEvent.java b/src/java.desktop/share/classes/javax/swing/event/CaretEvent.java index 55c50da3809..21822707142 100644 --- a/src/java.desktop/share/classes/javax/swing/event/CaretEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/CaretEvent.java @@ -36,7 +36,7 @@ import java.util.EventObject; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/ChangeEvent.java b/src/java.desktop/share/classes/javax/swing/event/ChangeEvent.java index d9d596553f4..82e8508e62c 100644 --- a/src/java.desktop/share/classes/javax/swing/event/ChangeEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/ChangeEvent.java @@ -36,7 +36,7 @@ import java.util.EventObject; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/EventListenerList.java b/src/java.desktop/share/classes/javax/swing/event/EventListenerList.java index 1cf242d6656..8de11e560b0 100644 --- a/src/java.desktop/share/classes/javax/swing/event/EventListenerList.java +++ b/src/java.desktop/share/classes/javax/swing/event/EventListenerList.java @@ -89,7 +89,7 @@ import sun.reflect.misc.ReflectUtil; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/HyperlinkEvent.java b/src/java.desktop/share/classes/javax/swing/event/HyperlinkEvent.java index bcd7ea60063..57e11a4fbd8 100644 --- a/src/java.desktop/share/classes/javax/swing/event/HyperlinkEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/HyperlinkEvent.java @@ -39,7 +39,7 @@ import javax.swing.text.Element; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/InternalFrameEvent.java b/src/java.desktop/share/classes/javax/swing/event/InternalFrameEvent.java index 3d830b22712..9019b5468e6 100644 --- a/src/java.desktop/share/classes/javax/swing/event/InternalFrameEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/InternalFrameEvent.java @@ -42,7 +42,7 @@ import javax.swing.JInternalFrame; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/ListDataEvent.java b/src/java.desktop/share/classes/javax/swing/event/ListDataEvent.java index 3706d9733d1..ae06ade335a 100644 --- a/src/java.desktop/share/classes/javax/swing/event/ListDataEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/ListDataEvent.java @@ -36,7 +36,7 @@ import java.util.EventObject; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/ListSelectionEvent.java b/src/java.desktop/share/classes/javax/swing/event/ListSelectionEvent.java index 907fd1307b8..c0e04878d63 100644 --- a/src/java.desktop/share/classes/javax/swing/event/ListSelectionEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/ListSelectionEvent.java @@ -42,7 +42,7 @@ import javax.swing.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/MenuDragMouseEvent.java b/src/java.desktop/share/classes/javax/swing/event/MenuDragMouseEvent.java index b9da56733bd..94138d23d35 100644 --- a/src/java.desktop/share/classes/javax/swing/event/MenuDragMouseEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/MenuDragMouseEvent.java @@ -41,7 +41,7 @@ import java.awt.Component; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/MenuEvent.java b/src/java.desktop/share/classes/javax/swing/event/MenuEvent.java index 7b68d3c4e60..0d86d51ff29 100644 --- a/src/java.desktop/share/classes/javax/swing/event/MenuEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/MenuEvent.java @@ -37,7 +37,7 @@ import java.util.EventObject; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/MenuKeyEvent.java b/src/java.desktop/share/classes/javax/swing/event/MenuKeyEvent.java index 24407f181bd..3319408f685 100644 --- a/src/java.desktop/share/classes/javax/swing/event/MenuKeyEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/MenuKeyEvent.java @@ -41,7 +41,7 @@ import java.awt.Component; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/PopupMenuEvent.java b/src/java.desktop/share/classes/javax/swing/event/PopupMenuEvent.java index 4431dcc0642..af4ddf6958e 100644 --- a/src/java.desktop/share/classes/javax/swing/event/PopupMenuEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/PopupMenuEvent.java @@ -35,7 +35,7 @@ import java.util.EventObject; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/TableColumnModelEvent.java b/src/java.desktop/share/classes/javax/swing/event/TableColumnModelEvent.java index 7293238671b..db5c7b43212 100644 --- a/src/java.desktop/share/classes/javax/swing/event/TableColumnModelEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/TableColumnModelEvent.java @@ -38,7 +38,7 @@ import javax.swing.table.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/TableModelEvent.java b/src/java.desktop/share/classes/javax/swing/event/TableModelEvent.java index 1ece19ee805..f5a72f4f672 100644 --- a/src/java.desktop/share/classes/javax/swing/event/TableModelEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/TableModelEvent.java @@ -57,7 +57,7 @@ import javax.swing.table.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/TreeExpansionEvent.java b/src/java.desktop/share/classes/javax/swing/event/TreeExpansionEvent.java index 3fc415de46a..72e3591bb62 100644 --- a/src/java.desktop/share/classes/javax/swing/event/TreeExpansionEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/TreeExpansionEvent.java @@ -42,7 +42,7 @@ import javax.swing.tree.TreePath; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/TreeModelEvent.java b/src/java.desktop/share/classes/javax/swing/event/TreeModelEvent.java index 264500b97e6..1d377bf2a65 100644 --- a/src/java.desktop/share/classes/javax/swing/event/TreeModelEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/TreeModelEvent.java @@ -42,7 +42,7 @@ import javax.swing.tree.TreePath; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/TreeSelectionEvent.java b/src/java.desktop/share/classes/javax/swing/event/TreeSelectionEvent.java index 32de1e9f517..a7b91e8e050 100644 --- a/src/java.desktop/share/classes/javax/swing/event/TreeSelectionEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/TreeSelectionEvent.java @@ -40,7 +40,7 @@ import javax.swing.tree.TreePath; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/event/UndoableEditEvent.java b/src/java.desktop/share/classes/javax/swing/event/UndoableEditEvent.java index bc81d9a721c..7725fedc583 100644 --- a/src/java.desktop/share/classes/javax/swing/event/UndoableEditEvent.java +++ b/src/java.desktop/share/classes/javax/swing/event/UndoableEditEvent.java @@ -35,7 +35,7 @@ import javax.swing.undo.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/BorderUIResource.java b/src/java.desktop/share/classes/javax/swing/plaf/BorderUIResource.java index 0fa90f6a50c..a13a6c95a60 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/BorderUIResource.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/BorderUIResource.java @@ -51,7 +51,7 @@ import javax.swing.plaf.UIResource; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/ColorUIResource.java b/src/java.desktop/share/classes/javax/swing/plaf/ColorUIResource.java index 196fd6728fd..0b0da3f8bc3 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/ColorUIResource.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/ColorUIResource.java @@ -37,7 +37,7 @@ import java.beans.ConstructorProperties; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/DimensionUIResource.java b/src/java.desktop/share/classes/javax/swing/plaf/DimensionUIResource.java index 756b08d1cb7..f7a7ec9c30e 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/DimensionUIResource.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/DimensionUIResource.java @@ -40,7 +40,7 @@ import javax.swing.plaf.UIResource; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/FontUIResource.java b/src/java.desktop/share/classes/javax/swing/plaf/FontUIResource.java index 50ebb30eb65..9da2caecd35 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/FontUIResource.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/FontUIResource.java @@ -39,7 +39,7 @@ import javax.swing.plaf.UIResource; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/IconUIResource.java b/src/java.desktop/share/classes/javax/swing/plaf/IconUIResource.java index 5a25f5e8c4c..b454a0bdea4 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/IconUIResource.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/IconUIResource.java @@ -44,7 +44,7 @@ import javax.swing.plaf.UIResource; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/InsetsUIResource.java b/src/java.desktop/share/classes/javax/swing/plaf/InsetsUIResource.java index 16fe19a4102..a933d0ab573 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/InsetsUIResource.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/InsetsUIResource.java @@ -39,7 +39,7 @@ import javax.swing.plaf.UIResource; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicArrowButton.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicArrowButton.java index 33f155a3bd2..ff9c846cce4 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicArrowButton.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicArrowButton.java @@ -43,7 +43,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicCheckBoxUI.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicCheckBoxUI.java index 37501888a60..11b94fddab5 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicCheckBoxUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicCheckBoxUI.java @@ -43,7 +43,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboBoxEditor.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboBoxEditor.java index c7534c1e0c1..157c1dde4f7 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboBoxEditor.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboBoxEditor.java @@ -169,7 +169,7 @@ public class BasicComboBoxEditor implements ComboBoxEditor,FocusListener { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboBoxRenderer.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboBoxRenderer.java index 76da80e9ea2..23899e72bc4 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboBoxRenderer.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboBoxRenderer.java @@ -41,7 +41,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -139,7 +139,7 @@ implements ListCellRenderer, Serializable { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboPopup.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboPopup.java index 60c6f572bf9..ef779a7642e 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboPopup.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboPopup.java @@ -55,7 +55,7 @@ import sun.awt.AWTAccessor.MouseEventAccessor; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicEditorPaneUI.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicEditorPaneUI.java index 7445d79c2dc..81c9abcc53c 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicEditorPaneUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicEditorPaneUI.java @@ -44,7 +44,7 @@ import javax.swing.border.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicIconFactory.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicIconFactory.java index 4db5f6078f8..b8c0465b329 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicIconFactory.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicIconFactory.java @@ -42,7 +42,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicInternalFrameTitlePane.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicInternalFrameTitlePane.java index 44cf16cdbe6..72b2d8be536 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicInternalFrameTitlePane.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicInternalFrameTitlePane.java @@ -48,7 +48,7 @@ import sun.swing.DefaultLookup; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicListUI.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicListUI.java index 4d9163e0377..37493e0eb9f 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicListUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicListUI.java @@ -1566,7 +1566,7 @@ public class BasicListUI extends ListUI * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1680,7 +1680,7 @@ public class BasicListUI extends ListUI * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1740,7 +1740,7 @@ public class BasicListUI extends ListUI * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1809,7 +1809,7 @@ public class BasicListUI extends ListUI * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicLookAndFeel.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicLookAndFeel.java index feda281cb54..02749f742ef 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicLookAndFeel.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicLookAndFeel.java @@ -97,7 +97,7 @@ import java.beans.PropertyChangeEvent; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicSplitPaneDivider.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicSplitPaneDivider.java index 386202d19fd..b8054b750fd 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicSplitPaneDivider.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicSplitPaneDivider.java @@ -53,7 +53,7 @@ import sun.swing.DefaultLookup; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -697,7 +697,7 @@ public class BasicSplitPaneDivider extends Container * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextAreaUI.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextAreaUI.java index 85793b0a590..9cd49dca1d6 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextAreaUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextAreaUI.java @@ -43,7 +43,7 @@ import javax.swing.plaf.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextFieldUI.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextFieldUI.java index f71eb5f9ff0..2e67a99720a 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextFieldUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextFieldUI.java @@ -45,7 +45,7 @@ import sun.swing.DefaultLookup; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextPaneUI.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextPaneUI.java index 1d94e9c5651..a76308dbec6 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextPaneUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextPaneUI.java @@ -41,7 +41,7 @@ import javax.swing.border.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextUI.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextUI.java index 50dd09dd68e..b52d365dd76 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicTextUI.java @@ -97,7 +97,7 @@ import javax.swing.plaf.basic.DragRecognitionSupport.BeforeDrag; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/basic/ComboPopup.java b/src/java.desktop/share/classes/javax/swing/plaf/basic/ComboPopup.java index f9c260d0653..122db235334 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/basic/ComboPopup.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/basic/ComboPopup.java @@ -40,7 +40,7 @@ import javax.swing.JList; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/DefaultMetalTheme.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/DefaultMetalTheme.java index 8d5b97e4020..a483bac727e 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/DefaultMetalTheme.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/DefaultMetalTheme.java @@ -79,7 +79,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalButtonUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalButtonUI.java index 0dbaca9a59c..3ae61eb7a3b 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalButtonUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalButtonUI.java @@ -44,7 +44,7 @@ import javax.swing.plaf.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalCheckBoxIcon.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalCheckBoxIcon.java index c262f460fe7..7619a076f0d 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalCheckBoxIcon.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalCheckBoxIcon.java @@ -40,7 +40,7 @@ import javax.swing.plaf.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalCheckBoxUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalCheckBoxUI.java index 8e1417d0dbb..c7b0e8882d0 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalCheckBoxUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalCheckBoxUI.java @@ -44,7 +44,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalComboBoxButton.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalComboBoxButton.java index 20a77a3ecb1..8a6f3eba5d1 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalComboBoxButton.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalComboBoxButton.java @@ -41,7 +41,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalComboBoxEditor.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalComboBoxEditor.java index e9f4aeb4c9d..81505baaed0 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalComboBoxEditor.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalComboBoxEditor.java @@ -41,7 +41,7 @@ import javax.swing.plaf.basic.BasicComboBoxEditor; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -133,7 +133,7 @@ public class MetalComboBoxEditor extends BasicComboBoxEditor { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalComboBoxUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalComboBoxUI.java index 6e8a731e020..85fe7ff7735 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalComboBoxUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalComboBoxUI.java @@ -43,7 +43,7 @@ import java.beans.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalIconFactory.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalIconFactory.java index b433ef1d059..20fa472e6d6 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalIconFactory.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalIconFactory.java @@ -38,7 +38,7 @@ import static sun.swing.SwingUtilities2.getAndSetAntialisingHintForScaledGraphic /** * Factory object that vends Icons for - * the Java™ look and feel (Metal). + * the Java look and feel (Metal). * These icons are used extensively in Metal via the defaults mechanism. * While other look and feels often use GIFs for icons, creating icons * in code facilitates switching to other themes. @@ -54,7 +54,7 @@ import static sun.swing.SwingUtilities2.getAndSetAntialisingHintForScaledGraphic * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1639,7 +1639,7 @@ public class MetalIconFactory implements Serializable { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -1733,7 +1733,7 @@ public class MetalIconFactory implements Serializable { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -1753,7 +1753,7 @@ public class MetalIconFactory implements Serializable { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -1853,7 +1853,7 @@ public class MetalIconFactory implements Serializable { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalLookAndFeel.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalLookAndFeel.java index e3a491578cb..88233fe472b 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalLookAndFeel.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalLookAndFeel.java @@ -71,7 +71,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalProgressBarUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalProgressBarUI.java index 42b0b3719a2..7b537b61fc3 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalProgressBarUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalProgressBarUI.java @@ -38,7 +38,7 @@ import java.awt.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalRadioButtonUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalRadioButtonUI.java index 660bfa84c8b..c89d1c545cd 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalRadioButtonUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalRadioButtonUI.java @@ -46,7 +46,7 @@ import javax.swing.text.View; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalRootPaneUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalRootPaneUI.java index 18edf3d7569..e15fe45d267 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalRootPaneUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalRootPaneUI.java @@ -52,7 +52,7 @@ import java.awt.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalScrollButton.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalScrollButton.java index 13553acda46..8a27d65a0e5 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalScrollButton.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalScrollButton.java @@ -43,7 +43,7 @@ import javax.swing.plaf.basic.BasicArrowButton; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalScrollPaneUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalScrollPaneUI.java index c65eb52a657..e63d3cab337 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalScrollPaneUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalScrollPaneUI.java @@ -44,7 +44,7 @@ import java.awt.event.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSeparatorUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSeparatorUI.java index 58b6e69e6fb..ca893fd73b6 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSeparatorUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSeparatorUI.java @@ -44,7 +44,7 @@ import javax.swing.plaf.basic.BasicSeparatorUI; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSliderUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSliderUI.java index bc21c7a5094..bd1d2e6b41b 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSliderUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSliderUI.java @@ -44,7 +44,7 @@ import javax.swing.plaf.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSplitPaneDivider.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSplitPaneDivider.java index 5e9f0ac9fb1..842dbd1e8c0 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSplitPaneDivider.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSplitPaneDivider.java @@ -39,7 +39,7 @@ import javax.swing.plaf.basic.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSplitPaneUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSplitPaneUI.java index 8d183126780..f7f303721e1 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSplitPaneUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalSplitPaneUI.java @@ -37,7 +37,7 @@ import javax.swing.plaf.basic.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalTabbedPaneUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalTabbedPaneUI.java index f22fd8e86dd..2d7fa9daa5f 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalTabbedPaneUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalTabbedPaneUI.java @@ -41,7 +41,7 @@ import javax.swing.plaf.basic.BasicTabbedPaneUI; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalTextFieldUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalTextFieldUI.java index 70db1ee921b..c4905d8e581 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalTextFieldUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalTextFieldUI.java @@ -41,7 +41,7 @@ import javax.swing.plaf.basic.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalToggleButtonUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalToggleButtonUI.java index 15f50e90bb8..2129a20b55a 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalToggleButtonUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalToggleButtonUI.java @@ -49,7 +49,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalToolTipUI.java b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalToolTipUI.java index ce80e39fb5f..95b6bb0f2fa 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalToolTipUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/metal/MetalToolTipUI.java @@ -45,7 +45,7 @@ import javax.swing.text.View; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/multi/MultiLookAndFeel.java b/src/java.desktop/share/classes/javax/swing/plaf/multi/MultiLookAndFeel.java index 074ef6a4b1e..c420a2eb108 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/multi/MultiLookAndFeel.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/multi/MultiLookAndFeel.java @@ -47,7 +47,7 @@ import javax.swing.plaf.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthTextAreaUI.java b/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthTextAreaUI.java index 6d6cbc6804e..3eb8380640e 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthTextAreaUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthTextAreaUI.java @@ -44,7 +44,7 @@ import java.beans.PropertyChangeEvent; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthTextFieldUI.java b/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthTextFieldUI.java index f202d9b45e1..7b23d6f763b 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthTextFieldUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthTextFieldUI.java @@ -43,7 +43,7 @@ import java.beans.PropertyChangeEvent; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthTextPaneUI.java b/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthTextPaneUI.java index d4f8aaca373..d34c4752b58 100644 --- a/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthTextPaneUI.java +++ b/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthTextPaneUI.java @@ -40,7 +40,7 @@ import java.awt.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/table/AbstractTableModel.java b/src/java.desktop/share/classes/javax/swing/table/AbstractTableModel.java index bc1c9ef8887..d24b1cce147 100644 --- a/src/java.desktop/share/classes/javax/swing/table/AbstractTableModel.java +++ b/src/java.desktop/share/classes/javax/swing/table/AbstractTableModel.java @@ -50,7 +50,7 @@ import java.util.EventListener; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/table/DefaultTableCellRenderer.java b/src/java.desktop/share/classes/javax/swing/table/DefaultTableCellRenderer.java index 8b9df51d10d..308ec5da779 100644 --- a/src/java.desktop/share/classes/javax/swing/table/DefaultTableCellRenderer.java +++ b/src/java.desktop/share/classes/javax/swing/table/DefaultTableCellRenderer.java @@ -75,7 +75,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -392,7 +392,7 @@ public class DefaultTableCellRenderer extends JLabel * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/table/DefaultTableColumnModel.java b/src/java.desktop/share/classes/javax/swing/table/DefaultTableColumnModel.java index 71abb7adea1..71c39b7e8bb 100644 --- a/src/java.desktop/share/classes/javax/swing/table/DefaultTableColumnModel.java +++ b/src/java.desktop/share/classes/javax/swing/table/DefaultTableColumnModel.java @@ -44,7 +44,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/table/DefaultTableModel.java b/src/java.desktop/share/classes/javax/swing/table/DefaultTableModel.java index 58e79cd0fb7..08dfc85b0a9 100644 --- a/src/java.desktop/share/classes/javax/swing/table/DefaultTableModel.java +++ b/src/java.desktop/share/classes/javax/swing/table/DefaultTableModel.java @@ -50,7 +50,7 @@ import javax.swing.event.TableModelEvent; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/table/JTableHeader.java b/src/java.desktop/share/classes/javax/swing/table/JTableHeader.java index 846c767eb19..942d2cc30dc 100644 --- a/src/java.desktop/share/classes/javax/swing/table/JTableHeader.java +++ b/src/java.desktop/share/classes/javax/swing/table/JTableHeader.java @@ -53,7 +53,7 @@ import sun.awt.AWTAccessor.MouseEventAccessor; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -801,7 +801,7 @@ public class JTableHeader extends JComponent implements TableColumnModelListener * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/table/TableColumn.java b/src/java.desktop/share/classes/javax/swing/table/TableColumn.java index 5fc5cab4305..171d2349775 100644 --- a/src/java.desktop/share/classes/javax/swing/table/TableColumn.java +++ b/src/java.desktop/share/classes/javax/swing/table/TableColumn.java @@ -67,7 +67,7 @@ import javax.swing.event.SwingPropertyChangeSupport; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/AbstractDocument.java b/src/java.desktop/share/classes/javax/swing/text/AbstractDocument.java index 34542765dbf..ce0ee0f229d 100644 --- a/src/java.desktop/share/classes/javax/swing/text/AbstractDocument.java +++ b/src/java.desktop/share/classes/javax/swing/text/AbstractDocument.java @@ -91,7 +91,7 @@ import sun.swing.text.UndoableEditLockSupport; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1775,7 +1775,7 @@ public abstract class AbstractDocument implements Document, Serializable { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -2245,7 +2245,7 @@ public abstract class AbstractDocument implements Document, Serializable { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -2500,7 +2500,7 @@ public abstract class AbstractDocument implements Document, Serializable { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/BadLocationException.java b/src/java.desktop/share/classes/javax/swing/text/BadLocationException.java index 9d5201abca7..2a72534ea73 100644 --- a/src/java.desktop/share/classes/javax/swing/text/BadLocationException.java +++ b/src/java.desktop/share/classes/javax/swing/text/BadLocationException.java @@ -33,7 +33,7 @@ package javax.swing.text; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/DateFormatter.java b/src/java.desktop/share/classes/javax/swing/text/DateFormatter.java index b82788fb6a2..ceb9e5f878b 100644 --- a/src/java.desktop/share/classes/javax/swing/text/DateFormatter.java +++ b/src/java.desktop/share/classes/javax/swing/text/DateFormatter.java @@ -39,7 +39,7 @@ import javax.swing.text.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/DefaultCaret.java b/src/java.desktop/share/classes/javax/swing/text/DefaultCaret.java index b1b636bc9e9..86d8976ca12 100644 --- a/src/java.desktop/share/classes/javax/swing/text/DefaultCaret.java +++ b/src/java.desktop/share/classes/javax/swing/text/DefaultCaret.java @@ -98,7 +98,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/DefaultEditorKit.java b/src/java.desktop/share/classes/javax/swing/text/DefaultEditorKit.java index cd99bb7c719..ee1db4739ce 100644 --- a/src/java.desktop/share/classes/javax/swing/text/DefaultEditorKit.java +++ b/src/java.desktop/share/classes/javax/swing/text/DefaultEditorKit.java @@ -839,7 +839,7 @@ public class DefaultEditorKit extends EditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -898,7 +898,7 @@ public class DefaultEditorKit extends EditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -947,7 +947,7 @@ public class DefaultEditorKit extends EditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -990,7 +990,7 @@ public class DefaultEditorKit extends EditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1272,7 +1272,7 @@ public class DefaultEditorKit extends EditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1309,7 +1309,7 @@ public class DefaultEditorKit extends EditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1347,7 +1347,7 @@ public class DefaultEditorKit extends EditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1383,7 +1383,7 @@ public class DefaultEditorKit extends EditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/DefaultFormatter.java b/src/java.desktop/share/classes/javax/swing/text/DefaultFormatter.java index 12cc4b3f95c..09304f723e4 100644 --- a/src/java.desktop/share/classes/javax/swing/text/DefaultFormatter.java +++ b/src/java.desktop/share/classes/javax/swing/text/DefaultFormatter.java @@ -50,7 +50,7 @@ import javax.swing.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/DefaultFormatterFactory.java b/src/java.desktop/share/classes/javax/swing/text/DefaultFormatterFactory.java index 86cce58755d..e8ddfdfb00d 100644 --- a/src/java.desktop/share/classes/javax/swing/text/DefaultFormatterFactory.java +++ b/src/java.desktop/share/classes/javax/swing/text/DefaultFormatterFactory.java @@ -64,7 +64,7 @@ import javax.swing.JFormattedTextField; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/DefaultStyledDocument.java b/src/java.desktop/share/classes/javax/swing/text/DefaultStyledDocument.java index 25743f0dd3a..7c95196b8fc 100644 --- a/src/java.desktop/share/classes/javax/swing/text/DefaultStyledDocument.java +++ b/src/java.desktop/share/classes/javax/swing/text/DefaultStyledDocument.java @@ -62,7 +62,7 @@ import static sun.swing.SwingUtilities2.IMPLIED_CR; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1132,7 +1132,7 @@ public class DefaultStyledDocument extends AbstractDocument implements StyledDoc * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -1164,7 +1164,7 @@ public class DefaultStyledDocument extends AbstractDocument implements StyledDoc * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -1400,7 +1400,7 @@ public class DefaultStyledDocument extends AbstractDocument implements StyledDoc * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/text/InternationalFormatter.java b/src/java.desktop/share/classes/javax/swing/text/InternationalFormatter.java index 817902b65fc..618472f8f68 100644 --- a/src/java.desktop/share/classes/javax/swing/text/InternationalFormatter.java +++ b/src/java.desktop/share/classes/javax/swing/text/InternationalFormatter.java @@ -83,7 +83,7 @@ import javax.swing.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/JTextComponent.java b/src/java.desktop/share/classes/javax/swing/text/JTextComponent.java index 1b772971b6d..ef93db7036b 100644 --- a/src/java.desktop/share/classes/javax/swing/text/JTextComponent.java +++ b/src/java.desktop/share/classes/javax/swing/text/JTextComponent.java @@ -285,7 +285,7 @@ import sun.swing.SwingAccessor; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1130,7 +1130,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -2554,7 +2554,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/text/MaskFormatter.java b/src/java.desktop/share/classes/javax/swing/text/MaskFormatter.java index 8924858caf1..80d106367ad 100644 --- a/src/java.desktop/share/classes/javax/swing/text/MaskFormatter.java +++ b/src/java.desktop/share/classes/javax/swing/text/MaskFormatter.java @@ -151,7 +151,7 @@ import javax.swing.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/NumberFormatter.java b/src/java.desktop/share/classes/javax/swing/text/NumberFormatter.java index b3db8fceb03..7e2c0bb59f7 100644 --- a/src/java.desktop/share/classes/javax/swing/text/NumberFormatter.java +++ b/src/java.desktop/share/classes/javax/swing/text/NumberFormatter.java @@ -85,7 +85,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/PlainDocument.java b/src/java.desktop/share/classes/javax/swing/text/PlainDocument.java index c295b823c58..cd397d12a68 100644 --- a/src/java.desktop/share/classes/javax/swing/text/PlainDocument.java +++ b/src/java.desktop/share/classes/javax/swing/text/PlainDocument.java @@ -48,7 +48,7 @@ import java.util.Vector; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/SimpleAttributeSet.java b/src/java.desktop/share/classes/javax/swing/text/SimpleAttributeSet.java index ca337008d73..915ef252a8f 100644 --- a/src/java.desktop/share/classes/javax/swing/text/SimpleAttributeSet.java +++ b/src/java.desktop/share/classes/javax/swing/text/SimpleAttributeSet.java @@ -42,7 +42,7 @@ import java.util.LinkedHashMap; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/StringContent.java b/src/java.desktop/share/classes/javax/swing/text/StringContent.java index 4f26f54d8b8..bef98a5cc2a 100644 --- a/src/java.desktop/share/classes/javax/swing/text/StringContent.java +++ b/src/java.desktop/share/classes/javax/swing/text/StringContent.java @@ -44,7 +44,7 @@ import javax.swing.SwingUtilities; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/StyleContext.java b/src/java.desktop/share/classes/javax/swing/text/StyleContext.java index 86c6eed47bf..ff316c97b5d 100644 --- a/src/java.desktop/share/classes/javax/swing/text/StyleContext.java +++ b/src/java.desktop/share/classes/javax/swing/text/StyleContext.java @@ -56,7 +56,7 @@ import sun.font.FontUtilities; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * @@ -1276,7 +1276,7 @@ public class StyleContext implements Serializable, AbstractDocument.AttributeCon * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/text/StyledEditorKit.java b/src/java.desktop/share/classes/javax/swing/text/StyledEditorKit.java index df96bf9e0bd..00ad982cbf4 100644 --- a/src/java.desktop/share/classes/javax/swing/text/StyledEditorKit.java +++ b/src/java.desktop/share/classes/javax/swing/text/StyledEditorKit.java @@ -376,7 +376,7 @@ public class StyledEditorKit extends DefaultEditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -496,7 +496,7 @@ public class StyledEditorKit extends DefaultEditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -553,7 +553,7 @@ public class StyledEditorKit extends DefaultEditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -621,7 +621,7 @@ public class StyledEditorKit extends DefaultEditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -688,7 +688,7 @@ public class StyledEditorKit extends DefaultEditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -739,7 +739,7 @@ public class StyledEditorKit extends DefaultEditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -779,7 +779,7 @@ public class StyledEditorKit extends DefaultEditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ @@ -819,7 +819,7 @@ public class StyledEditorKit extends DefaultEditorKit { * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. */ diff --git a/src/java.desktop/share/classes/javax/swing/text/TabSet.java b/src/java.desktop/share/classes/javax/swing/text/TabSet.java index ca81b305648..e0a68ffa319 100644 --- a/src/java.desktop/share/classes/javax/swing/text/TabSet.java +++ b/src/java.desktop/share/classes/javax/swing/text/TabSet.java @@ -37,7 +37,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/TabStop.java b/src/java.desktop/share/classes/javax/swing/text/TabStop.java index 456629139f9..4d2d60d448b 100644 --- a/src/java.desktop/share/classes/javax/swing/text/TabStop.java +++ b/src/java.desktop/share/classes/javax/swing/text/TabStop.java @@ -37,7 +37,7 @@ import java.io.Serializable; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/TextAction.java b/src/java.desktop/share/classes/javax/swing/text/TextAction.java index df03bfc1661..5c11c994ab2 100644 --- a/src/java.desktop/share/classes/javax/swing/text/TextAction.java +++ b/src/java.desktop/share/classes/javax/swing/text/TextAction.java @@ -52,7 +52,7 @@ import javax.swing.KeyStroke; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/text/html/HTMLDocument.java b/src/java.desktop/share/classes/javax/swing/text/html/HTMLDocument.java index d0eb68dbfaa..eb0809dcc10 100644 --- a/src/java.desktop/share/classes/javax/swing/text/html/HTMLDocument.java +++ b/src/java.desktop/share/classes/javax/swing/text/html/HTMLDocument.java @@ -262,7 +262,7 @@ import static sun.swing.SwingUtilities2.IMPLIED_CR; * not be compatible with future Swing releases. The current * serialization support is appropriate for short term storage or RMI * between applications running the same version of Swing. As of 1.4, - * support for long term storage of all JavaBeans™ + * support for long term storage of all JavaBeans * has been added to the * java.beans package. Please see {@link * java.beans.XMLEncoder}.

      diff --git a/src/java.desktop/share/classes/javax/swing/text/html/Option.java b/src/java.desktop/share/classes/javax/swing/text/html/Option.java index 8e9ce7e1944..332962a96de 100644 --- a/src/java.desktop/share/classes/javax/swing/text/html/Option.java +++ b/src/java.desktop/share/classes/javax/swing/text/html/Option.java @@ -38,7 +38,7 @@ import javax.swing.text.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/tree/AbstractLayoutCache.java b/src/java.desktop/share/classes/javax/swing/tree/AbstractLayoutCache.java index 23272555363..37d529a89c2 100644 --- a/src/java.desktop/share/classes/javax/swing/tree/AbstractLayoutCache.java +++ b/src/java.desktop/share/classes/javax/swing/tree/AbstractLayoutCache.java @@ -35,7 +35,7 @@ import java.util.Enumeration; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/tree/DefaultMutableTreeNode.java b/src/java.desktop/share/classes/javax/swing/tree/DefaultMutableTreeNode.java index a487218d741..8901cdfea2e 100644 --- a/src/java.desktop/share/classes/javax/swing/tree/DefaultMutableTreeNode.java +++ b/src/java.desktop/share/classes/javax/swing/tree/DefaultMutableTreeNode.java @@ -77,7 +77,7 @@ import java.util.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeCellEditor.java b/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeCellEditor.java index 8f76fe2952c..f0d4820a39a 100644 --- a/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeCellEditor.java +++ b/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeCellEditor.java @@ -49,7 +49,7 @@ import java.util.EventObject; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeCellRenderer.java b/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeCellRenderer.java index c54673deaff..b3711074cb9 100644 --- a/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeCellRenderer.java +++ b/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeCellRenderer.java @@ -119,7 +119,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeModel.java b/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeModel.java index 3d9db10f427..d68c8c7dd70 100644 --- a/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeModel.java +++ b/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeModel.java @@ -41,7 +41,7 @@ import javax.swing.event.*; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeSelectionModel.java b/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeSelectionModel.java index 80a5030c5a4..83ba0bef859 100644 --- a/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeSelectionModel.java +++ b/src/java.desktop/share/classes/javax/swing/tree/DefaultTreeSelectionModel.java @@ -53,7 +53,7 @@ import javax.swing.DefaultListSelectionModel; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/tree/FixedHeightLayoutCache.java b/src/java.desktop/share/classes/javax/swing/tree/FixedHeightLayoutCache.java index 637e549bfb8..21220526586 100644 --- a/src/java.desktop/share/classes/javax/swing/tree/FixedHeightLayoutCache.java +++ b/src/java.desktop/share/classes/javax/swing/tree/FixedHeightLayoutCache.java @@ -42,7 +42,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/tree/TreePath.java b/src/java.desktop/share/classes/javax/swing/tree/TreePath.java index e1631d981f8..e8abb0597df 100644 --- a/src/java.desktop/share/classes/javax/swing/tree/TreePath.java +++ b/src/java.desktop/share/classes/javax/swing/tree/TreePath.java @@ -74,7 +74,7 @@ import java.beans.ConstructorProperties; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/tree/VariableHeightLayoutCache.java b/src/java.desktop/share/classes/javax/swing/tree/VariableHeightLayoutCache.java index e3ba2eb5b59..64a2d884f68 100644 --- a/src/java.desktop/share/classes/javax/swing/tree/VariableHeightLayoutCache.java +++ b/src/java.desktop/share/classes/javax/swing/tree/VariableHeightLayoutCache.java @@ -43,7 +43,7 @@ import sun.swing.SwingUtilities2; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/undo/CannotRedoException.java b/src/java.desktop/share/classes/javax/swing/undo/CannotRedoException.java index 15ed0c1b4b4..ea8712f7f03 100644 --- a/src/java.desktop/share/classes/javax/swing/undo/CannotRedoException.java +++ b/src/java.desktop/share/classes/javax/swing/undo/CannotRedoException.java @@ -32,7 +32,7 @@ package javax.swing.undo; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/undo/CannotUndoException.java b/src/java.desktop/share/classes/javax/swing/undo/CannotUndoException.java index 35606df3f69..e969e93d632 100644 --- a/src/java.desktop/share/classes/javax/swing/undo/CannotUndoException.java +++ b/src/java.desktop/share/classes/javax/swing/undo/CannotUndoException.java @@ -33,7 +33,7 @@ package javax.swing.undo; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.desktop/share/classes/javax/swing/undo/UndoManager.java b/src/java.desktop/share/classes/javax/swing/undo/UndoManager.java index 42c2494c6e5..187788f4729 100644 --- a/src/java.desktop/share/classes/javax/swing/undo/UndoManager.java +++ b/src/java.desktop/share/classes/javax/swing/undo/UndoManager.java @@ -131,7 +131,7 @@ import sun.swing.text.UndoableEditLockSupport; * future Swing releases. The current serialization support is * appropriate for short term storage or RMI between applications running * the same version of Swing. As of 1.4, support for long term storage - * of all JavaBeans™ + * of all JavaBeans * has been added to the java.beans package. * Please see {@link java.beans.XMLEncoder}. * diff --git a/src/java.instrument/share/classes/java/lang/instrument/ClassFileTransformer.java b/src/java.instrument/share/classes/java/lang/instrument/ClassFileTransformer.java index 896f30904de..aff31855422 100644 --- a/src/java.instrument/share/classes/java/lang/instrument/ClassFileTransformer.java +++ b/src/java.instrument/share/classes/java/lang/instrument/ClassFileTransformer.java @@ -156,7 +156,7 @@ import java.security.ProtectionDomain; * *

      * Note the term class file is used as defined in section 3.1 of - * The Java™ Virtual Machine Specification, to mean a + * The Java Virtual Machine Specification, to mean a * sequence of bytes in class file format, whether or not they reside in a * file. * diff --git a/src/java.instrument/share/classes/java/lang/instrument/Instrumentation.java b/src/java.instrument/share/classes/java/lang/instrument/Instrumentation.java index 06a5bc6bc7a..cd57f0188e1 100644 --- a/src/java.instrument/share/classes/java/lang/instrument/Instrumentation.java +++ b/src/java.instrument/share/classes/java/lang/instrument/Instrumentation.java @@ -450,7 +450,7 @@ public interface Instrumentation { * instrumentation classes. * *

      - * The Java™ Virtual Machine Specification + * The Java Virtual Machine Specification * specifies that a subsequent attempt to resolve a symbolic * reference that the Java virtual machine has previously unsuccessfully attempted * to resolve always fails with the same error that was thrown as a result of the @@ -504,7 +504,7 @@ public interface Instrumentation { * parameter to the appendToClassPathForInstrumentation method. * *

      - * The Java™ Virtual Machine Specification + * The Java Virtual Machine Specification * specifies that a subsequent attempt to resolve a symbolic * reference that the Java virtual machine has previously unsuccessfully attempted * to resolve always fails with the same error that was thrown as a result of the @@ -697,7 +697,7 @@ public interface Instrumentation { * to export. The {@code extraOpens} parameter is the map of additional * packages to open. In both cases, the map key is the fully-qualified name * of the package as defined in section 6.5.3 of - * The Java™ Language Specification , for example, {@code + * The Java Language Specification , for example, {@code * "java.lang"}. The map value is the non-empty set of modules that the * package should be exported or opened to.

      * diff --git a/src/java.logging/share/classes/java/util/logging/package-info.java b/src/java.logging/share/classes/java/util/logging/package-info.java index 2d665ee5597..4d92e6891e0 100644 --- a/src/java.logging/share/classes/java/util/logging/package-info.java +++ b/src/java.logging/share/classes/java/util/logging/package-info.java @@ -25,7 +25,7 @@ /** * Provides the classes and interfaces of - * the Java™ 2 platform's core logging facilities. + * the Java 2 platform's core logging facilities. * The central goal of the logging APIs is to support maintaining and servicing * software at customer sites. * diff --git a/src/java.management/share/classes/javax/management/package.html b/src/java.management/share/classes/javax/management/package.html index 84d7f441b92..ea211abab4a 100644 --- a/src/java.management/share/classes/javax/management/package.html +++ b/src/java.management/share/classes/javax/management/package.html @@ -30,7 +30,7 @@ questions.

      Provides the core classes for the Java Management Extensions.

      The Java Management Extensions - (JMX™) API is a standard + (JMX) API is a standard API for management and monitoring. Typical uses include:

        @@ -87,7 +87,7 @@ questions. notion of Standard MBeans. A Standard MBean is one whose attributes and operations are deduced from a Java interface using certain naming patterns, similar to those used - by JavaBeans™. For example, consider an interface like this:

        + by JavaBeans. For example, consider an interface like this:

             public interface ConfigurationMBean {
        diff --git a/src/java.management/share/classes/javax/management/remote/package.html b/src/java.management/share/classes/javax/management/remote/package.html
        index fbfc6351b10..3673d8dd8ed 100644
        --- a/src/java.management/share/classes/javax/management/remote/package.html
        +++ b/src/java.management/share/classes/javax/management/remote/package.html
        @@ -1,6 +1,6 @@
         
         
        -    JMX™ Remote API.
        +    JMX Remote API.