mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
8136930: Simplify use of module-system options by custom launchers
8160489: Multiple -Xpatch lines ignored by javac 8156998: javac should support new option -XinheritRuntimeEnvironment Reviewed-by: jlahoda, ksrini
This commit is contained in:
parent
3b80559162
commit
978417c4c7
161 changed files with 2421 additions and 1050 deletions
|
@ -28,22 +28,23 @@
|
|||
* @bug 8144226
|
||||
* @summary Ensures that excluded files are inaccessible (even for implicit
|
||||
* compilation)
|
||||
*
|
||||
* @modules jdk.compiler/com.sun.tools.sjavac
|
||||
* jdk.jdeps/com.sun.tools.javap
|
||||
* @modules jdk.compiler/com.sun.tools.javac.main
|
||||
* jdk.compiler/com.sun.tools.sjavac
|
||||
* jdk.compiler/com.sun.tools.sjavac.server
|
||||
* @library /tools/lib
|
||||
* @build Wrapper toolbox.ToolBox
|
||||
* @build Wrapper toolbox.ToolBox toolbox.Assert
|
||||
* @run main Wrapper HiddenFiles
|
||||
*/
|
||||
|
||||
import com.sun.tools.javac.main.Main.Result;
|
||||
import com.sun.tools.javac.util.Assert;
|
||||
import com.sun.tools.sjavac.server.Sjavac;
|
||||
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
|
||||
import com.sun.tools.javac.main.Main.Result;
|
||||
|
||||
import toolbox.Assert;
|
||||
|
||||
public class HiddenFiles extends SjavacBase {
|
||||
|
||||
public static void main(String[] ignore) throws Exception {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue