File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -457,8 +457,10 @@ protected void failure(String str) {
457
457
458
458
private ArgInfo parseArgs (String args []) {
459
459
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 " ;
462
464
}
463
465
464
466
for (int i = 0 ; i < args .length ; i ++) {
You can’t perform that action at this time.
0 commit comments