Skip to content

Commit 13158cb

Browse files
committedNov 18, 2022
8293041: --disable-@files option doesn't work and cause an error
Reviewed-by: alanb
1 parent 761a4f4 commit 13158cb

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
 

‎src/java.base/share/native/libjli/java.c

+2
Original file line numberDiff line numberDiff line change
@@ -1374,6 +1374,8 @@ ParseArguments(int *pargc, char ***pargv,
13741374
JLI_ReportErrorMessage(ARG_WARN, arg);
13751375
} else if (JLI_StrCCmp(arg, "-splash:") == 0) {
13761376
; /* Ignore machine independent options already handled */
1377+
} else if (JLI_StrCmp(arg, "--disable-@files") == 0) {
1378+
; /* Ignore --disable-@files option already handled */
13771379
} else if (ProcessPlatformOption(arg)) {
13781380
; /* Processing of platform dependent options */
13791381
} else {

‎test/jdk/tools/launcher/ArgsFileTest.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/**
2525
* @test
26-
* @bug 8027634 8231863
26+
* @bug 8027634 8231863 8293041
2727
* @summary Argument parsing from file
2828
* @modules jdk.compiler
2929
* jdk.zipfs
@@ -222,6 +222,10 @@ public void killSwitch() throws IOException {
222222
verifyUserArgs(Arrays.asList("uarg1", "@uarg2", "@@uarg3",
223223
"-uarg4", "uarg5", "@argKill"), tr, 3);
224224

225+
// --disable-@files should never pass to VM
226+
tr = doExec(env, javaCmd, "@argKill", "--disable-@files", "--version");
227+
tr.checkPositive();
228+
225229
argFile1.delete();
226230
argFile2.delete();
227231
argKill.delete();

0 commit comments

Comments
 (0)
Please sign in to comment.