up vote 0 down vote favorite
share [g+] share [fb]

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 ?

link|improve this question

50% accept rate
feedback

2 Answers

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|improve this answer
Actually, my problem is to perform "headed" test, not headless. – dilig0 Jul 15 '09 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 '09 at 12:01
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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