-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtests
executable file
·129 lines (114 loc) · 2.6 KB
/
runtests
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#!/bin/bash
function findtests()
{
FILES=`find src/sim/sims -name \*.json -print`
for FILE in $FILES; do
ONE=${FILE%.*}
TWO=${ONE##*/}
TESTS=($TWO ${TESTS[@]})
done
}
function detectos()
{
myname="$(uname -s)"
case "${myname}" in
Linux*) ostype="linux";;
Darwin*) ostype="macos";;
CYGWIN*) ostype="windows";;
*) ostype="unknown";;
esac
}
function initwin()
{
export JAVA_HOME="C:/users/public/wpilib/2022/jdk"
echo "initialzing for windows"
JPATH="-Djava.library.path=build/jni/release"
PATH=build/jni/release:$PATH
}
function initmacos()
{
echo "initialzing for macos"
export JAVA_HOME="/Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home"
export PATH=build/tmp/jniExtractDir:$PATH
export DYLD_LIBRARY_PATH=build/tmp/jniExtractDir:$DYLD_LIBRARY_PATH
JPATH="-Djava.library.path=build/tmp/jniExtractDir:/Users/bwg/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:."
}
function initlinux()
{
echo "initialzing for linux"
JPATH="-Djava.library.path=build/tmp/jniExtractDir:/usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib"
export JAVA_HOME=~/wpilib/2021/jdk
export LD_LIBRARY_PATH=build/tmp/jniExtractDir:$LD_LIBRARY_PATH
}
function init()
{
detectos
if [ $ostype == "linux" ]; then
initlinux
elif [ $ostype == "macos" ]; then
initmacos
elif [ $ostype == "windows" ]; then
initwin
else
echo "unknown operating system"
exit 1
fi
}
function runone()
{
echo -n "Running test $1 ... "
$JAVA_HOME/bin/java $JPATH -jar build/libs/$JARNAME.jar --logfile testout/$1.log --input $1 > testout/$1.out 2>&1
if [ $? -eq 0 ]; then
echo passed
else
echo failed
fi
}
function prunetests()
{
if [ $# -eq 1 ]; then
for TEST in ${TESTS[@]}; do
if [[ $TEST =~ $1 ]]; then
RUNTESTS=(${RUNTESTS[@]} $TEST)
fi
done
else
RUNTESTS=${TESTS[@]}
fi
}
function runtests()
{
echo -n "Running tests:"
first=true
for TEST in ${RUNTESTS[@]}; do
if [ $first == "false" ]; then
echo -n ","
fi
echo -n $TEST
first=false
done
echo
for TEST in ${RUNTESTS[@]}; do
runone $TEST
done
}
declare -a TESTS=()
declare -a RUNTESTS=()
JPATH=""
ostype=""
mkdir -p testout
JARNAMEFULL=`pwd`
JARNAME=`basename $JARNAMEFULL`
init
findtests
if [ "$#" -gt 0 ]; then
if [ "$1" == "--list" ]; then
echo "Available tests"
for TEST in ${TESTS[@]}; do
echo " " $TEST
done
exit 0 ;
fi
fi
prunetests $@
runtests