Skip to content

Commit c4745da

Browse files
committedApr 10, 2022
Launch debuggee with --enable-preview when testing with -Dmain.wrapper=Virtual
1 parent e8284df commit c4745da

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎test/jdk/com/sun/jdi/TestScaffold.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -457,8 +457,10 @@ protected void failure(String str) {
457457

458458
private ArgInfo parseArgs(String args[]) {
459459
ArgInfo argInfo = new ArgInfo();
460-
if (System.getProperty("main.wrapper") != null) {
461-
argInfo.targetAppCommandLine = TestScaffold.class.getName() + " " + System.getProperty("main.wrapper") + " ";
460+
String mainWrapper = System.getProperty("main.wrapper");
461+
if ("Virtual".equals(mainWrapper)) {
462+
argInfo.targetAppCommandLine = TestScaffold.class.getName() + " " + mainWrapper + " ";
463+
argInfo.targetVMArgs += "--enable-preview ";
462464
}
463465

464466
for (int i = 0; i < args.length; i++) {

0 commit comments

Comments
 (0)
Please sign in to comment.