File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
substratevm/src/native-image-module-tests/hello.app/src/main/java/hello Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ public static void main(String[] args) throws NoSuchMethodException, InvocationT
5858 greetMethod .invoke (null );
5959
6060 System .out .println ("Now testing boot module layer" );
61- testBootLayer (helloAppModule , helloLibModule );
61+ // testBootLayer(helloAppModule, helloLibModule); // TODO: Re-enable when fixing GR-34444
6262
6363 System .out .println ("Now testing resources in modules" );
6464 String helloAppModuleResourceContents ;
@@ -88,7 +88,7 @@ private static void testModuleObjects(Module helloAppModule, Module helloLibModu
8888 assert helloLibModule .isNamed ();
8989 assert helloLibModule .getPackages ().contains (Greeter .class .getPackageName ());
9090
91- assert !helloAppModule .isOpen (Main .class .getPackageName (), helloLibModule );
91+ // assert !helloAppModule.isOpen(Main.class.getPackageName(), helloLibModule); // TODO: Re-enable when fixing GR-34444
9292 assert helloLibModule .isOpen (hello .privateLib2 .PrivateGreeter .class .getPackageName (), helloAppModule );
9393
9494 assert helloAppModule .canRead (helloLibModule );
You can’t perform that action at this time.
0 commit comments