My favorites | Sign in
Logo
                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
# @version $Revision$ ($Author$) $Date$
#
. ./tck-environment.sh
if [ ! "$?" = "0" ]; then
echo Error calling tck-environment.sh
exit 1
fi

if [ ! -d "${MICROEMULATOR_HOME}" ] ; then
echo "Invalid Microemulator directory ${MICROEMULATOR_HOME}"
exit 1
fi

if [ ! -f "${MICROEMULATOR_HOME}/microemulator.jar" ] ; then
echo "Microemulator jar not found in directory ${MICROEMULATOR_HOME}"
exit 1
fi

if [ ! -f "${BLUECOVE_GPL_JAR}" ] ; then
echo "BlueCove-GPL not found ${BLUECOVE_GPL_JAR}"
exit 1
fi

BLUECOVE_TCK_CP="${MICROEMULATOR_HOME}/microemulator.jar"
BLUECOVE_TCK_CP="${BLUECOVE_TCK_CP}:${BLUECOVE_JAR}:${BLUECOVE_GPL_JAR}"

JVM_ARGS="-Dbluecove.deviceID=1"

java ${JVM_ARGS} -cp "${BLUECOVE_TCK_CP}" ${MICROEMULATOR_MAIN} ${MICROEMULATOR_ARGS} -Xautotest:http://${BLUECOVE_TCK_HOST}:${BLUECOVE_TCK_PORT}/getNextApp.jad
rc=$?
if [ ! "${rc}" = "0" ]; then
echo Error calling java
echo Prsess enter to exit
read
fi
Show details Hide details

Change log

r2940 by skarzhevskyy on Mar 20, 2009   Diff
TCT test using D-bus
Go to: 
Project members, sign in to write a code review

Older revisions

r2569 by skarzhevskyy on Dec 11, 2008   Diff
MicroEmulator in headless mode
r2568 by skarzhevskyy on Dec 11, 2008   Diff
MicroEmulator in headless mode
r2550 by skarzhevskyy on Dec 10, 2008   Diff
fixed scripts on Unix for dirs with
spaces
All revisions of this file

File info

Size: 962 bytes, 36 lines

File properties

svn:eol-style
LF
svn:executable
*
svn:keywords
Date Author Id Revision
Hosted by Google Code