equal
deleted
inserted
replaced
|
1 #!/bin/bash |
|
2 Xephyr -ac -screen 1024x768x24 -dpi 96 -br -reset -terminate -host-cursor 2> /dev/null :2 & |
|
3 sleep 3 |
|
4 echo $! > Xephyr.pid |
|
5 DISPLAY=:2 xterm -geometry 0x0 -hold -iconic & |
|
6 DISPLAY=:2 metacity & |
|
7 DISPLAY=:2 setxkbmap fi & |
|
8 sleep 3 |
|
9 DISPLAY=:2 java -cp ../nokiatests/bin:../xlibutils/java/bin:../org.eclipse.swt/bin:../eclipsetests/bin:../nokiatests/junit-3.8.1.1.jar -Djava.library.path=../xlibutils/native/release:release com.nokia.eswt.mt.AllTests > test.results.log |
|
10 kill -9 `cat Xephyr.pid` |