java.lang.InternalError - No RenderingEngine module found

Jiri Vanek jvanek at redhat.com
Wed Mar 14 09:19:56 PDT 2012


On 03/14/2012 05:11 PM, Omair Majid wrote:
> On 03/14/2012 11:36 AM, Jiri Vanek wrote:
>>   It happend when trying to create  jframe from test, run inside junit,
>> run from make from commandline.
>
> Can you post the code that is causing the error and tell us exactly how
> you are running it?
>
> Thanks,
> Omair

     @Test
     public void frame() throws AWTException, IOException{
         JFrame f = new JFrame();
         f.setSize(800,600);
         f.setVisible(true);
         Assert.assertNotNull(f);
         Robot r =new Robot();
         BufferedImage bi=r.createScreenCapture(new Rectangle(0,0,800,600));
         Assert.assertNotNull(bi);
         ImageIO.write(bi, "png", new File("/home/jvanek/Desktop/xp13.png"));

     }


in any testclass from jnlp testcases or unittests.

Then  ./autogen.sh ; ./configure  --prefix=/home/jvanek/icedtea-web-image --disable-docs; make check; make install;make run-netx-dist-tests. In all cases the frame test failed on first line with mentioned exception.

J:(



More information about the distro-pkg-dev mailing list