blob: aa96274b1370bb29b38bbcf8de5ba8c94d6bb98e (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
#!/bin/bash
# export cipherpack_debug=true
# export cipherpack_verbose=true
#
# JAVA_PROPS="-Dorg.cipherpack.debug=true -Dorg.cipherpack.verbose=true"
#
script_args="$@"
sdir=`dirname $(readlink -f $0)`
rootdir=`dirname $sdir`
bname=`basename $0 .sh`
. $rootdir/jaulib/scripts/setup-machine-arch.sh "-quiet"
dist_dir=$rootdir/"dist-$os_name-$archabi"
build_dir=$rootdir/"build-$os_name-$archabi"
echo dist_dir $dist_dir
echo build_dir $build_dir
if [ ! -e $dist_dir/lib/java/jaulib-test.jar ] ; then
echo "test exe $dist_dir/lib/java/jaulib-test.jar not existing"
exit 1
fi
if [ -z "$JAVA_HOME" -o ! -e "$JAVA_HOME" ] ; then
echo "ERROR: JAVA_HOME $JAVA_HOME does not exist"
exit 1
else
echo JAVA_HOME $JAVA_HOME
fi
if [ -z "$JUNIT_CP" ] ; then
echo "ERROR: JUNIT_CP $JUNIT_CP does not exist"
exit 1
else
echo JUNIT_CP $JUNIT_CP
fi
JAVA_EXE=${JAVA_HOME}/bin/java
# JAVA_EXE=`readlink -f $(which java)`
# JAVA_CMD="${JAVA_EXE} -Xcheck:jni -verbose:jni"
JAVA_CMD="${JAVA_EXE}"
if [ "$1" = "-log" ] ; then
logfile=$2
shift 2
else
logfile=
fi
test_class=test.org.cipherpack.Test01Cipherpack
if [ ! -z "$1" ] ; then
test_class=$1
shift 1
fi
test_basename=`echo ${test_class} | sed 's/.*\.//g'`
if [ -z "${logfile}" ] ; then
mkdir -p $rootdir/doc/test
logfile=$rootdir/doc/test/${bname}-${test_basename}-${os_name}-${archabi}.log
fi
rm -f $logfile
logbasename=`basename ${logfile} .log`
ulimit -c unlimited
# run as root 'dpkg-reconfigure locales' enable 'en_US.UTF-8'
# perhaps run as root 'update-locale LC_MEASUREMENT=en_US.UTF-8 LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8'
export LC_MEASUREMENT=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
# export JAVA_PROPS="-Xint"
# export EXE_WRAPPER="nice -20"
# export JAVA_PROPS="-Djau.debug=true -Djau.verbose=true"
test_classpath=$JUNIT_CP:${dist_dir}/lib/java/cipherpack.jar:${build_dir}/jaulib/java_base/jaulib_base.jar:${build_dir}/jaulib/test/java/jaulib-test.jar:${build_dir}/test/java/cipherpack-test.jar
#test_classpath=$JUNIT_CP:${dist_dir}/lib/java/cipherpack-fat.jar:${build_dir}/jaulib/java_base/jaulib_base.jar:${build_dir}/jaulib/test/java/jaulib-test.jar:${build_dir}/test/java/cipherpack-test.jar
do_test() {
echo "script invocation: $0 ${script_args}"
echo EXE_WRAPPER $EXE_WRAPPER
echo cipherpack_debug $cipherpack_debug
echo cipherpack_verbose $cipherpack_verbose
echo logbasename $logbasename
echo logfile $logfile
echo test_class ${test_class}
test_dir="${build_dir}/test/java/"
echo "cd ${test_dir}"
cd ${test_dir}
pwd
echo "$EXE_WRAPPER ${JAVA_CMD} ${JAVA_PROPS} -cp ${test_classpath} -Djava.library.path=${dist_dir}/lib org.junit.runner.JUnitCore ${test_class} ${*@Q}"
ulimit -c unlimited
$EXE_WRAPPER ${JAVA_CMD} ${JAVA_PROPS} -cp ${test_classpath} -Djava.library.path=${dist_dir}/lib org.junit.runner.JUnitCore ${test_class} ${*@Q}
# $EXE_WRAPPER ${JAVA_CMD} ${JAVA_PROPS} -cp ${test_classpath} org.junit.runner.JUnitCore ${test_class} ${*@Q}
exit $?
}
do_test "$@" 2>&1 | tee $logfile
|