vote up 0 vote down star

Hi !

I am currently trying to use hudson for continuous integration of an eclipse-based desktop application. The tests of this application are implemented with Junit and open some windows when running. I am currently facing some difficulties with launching these tests on a linux slave node because display is not exported.

Could someone help to configure hudson to perform graphical tests on linux slave nodes ?

flag

63% accept rate

2 Answers

vote up 1 vote down

Is setting the headless mode practical/of use ?

java -Djava.awt.headless=true

That tells the JVM you don't have a open display.

link|flag
Actually, my problem is to perform "headed" test, not headless. – dilig0 Jul 15 at 11:54
Just edited the above - the property dictates whether you have an open display. Is your problem simply setting the DISPLAY variable for each test then ? – Brian Agnew Jul 15 at 12:01
vote up 0 vote down

Have a look at vncserver.

Specifically, if your build is using Ant, you could this script to start Ant (and the vncwith) with:

#!/bin/sh
vncserver ${VNCDISPLAY} && export DISPLAY=${VNCDISPLAY} && $ANT_HOME/bin/ant $@;
vncserver -kill ${VNCDISPLAY}

You will need to set a unique environment variable VNCDISPLAY to something like: "localhost:11" for each plan.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.