-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtest.csh
executable file
·101 lines (96 loc) · 3.73 KB
/
runtest.csh
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
#! /bin/sh
#
# Script to start a JMRI class directly, e.g during development
#
# First argument is a fully-qualified class name. Any standard JMRI POSIX
# launcher options may precede the first argument. Run this script with the
# --help option for details.
#
# If the class has a main() method, that's launched. This works
# for running e.g. early-JUnit test classes, and applications
# like apps.DecoderPro.DecoderPro
#
# If there is no main() method found in the named class, an
# org.junit.runner.JUnitCore runner is asked to try to run the
# class as JUnit4 tests.
#
# This works by calling .run.sh, which is generated from the JMRI POSIX launcher
# by running 'ant run-sh'
#
# By default this script sets the JMRI settings: dir to the directory "temp" in
# the directory its run from. Pass the option --settingsdir="" to use the JMRI
# default location. test/jmri.conf in the directory this script is run from is
# used to pull any persistent settings unless --settingsdir=... is specified.
#
# Note that this script may mangle arguments with unescaped spaces. This can be
# avoided by writing spaces in arguments as "arg\ with\ spaces" or by wrapping
# arguments with spaces in extra, escaped quotes like "\"arg with spaces\"".
#
# If you need to add any additional Java options or defines,
# include them in the JMRI_OPTIONS environment variable
#
# jmri.demo Keep some test windows open after tests run
# jmri.headlesstest Tests won't attempt to use screen
# jmri.skipschematests Skip tests of XML schema if true
# jmri.skipscripttests Skip tests of Jython scripts if true
# jmri.log4jconfigfilename Specify replacement for details tests.lcf file (tests only)
#
# E.g.:
# setenv JMRI_OPTIONS -Djmri.skipschematests=true
#
# If your serial ports are not shown in the initial list, you
# can include them in the environment variable JMRI_SERIAL_PORTS
# separated by commas:
# export JMRI_SERIAL_PORTS="/dev/locobuffer,/dev/cmri"
#
# You can run separate instances of the program with their
# own preferences and setup if you provide the name of a configuration file
# as the 1st argument
#
# If you are getting X11 warnings about meta keys, uncomment the next line
# xprop -root -remove _MOTIF_DEFAULT_BINDINGS
#
# For more information, please see
# http://jmri.org/help/en/html/doc/Technical/StartUpScripts.shtml
dirname="$( dirname $0 )"
# assume ant is in the path, and silence output
if [ "${dirname}/scripts/AppScriptTemplate" -nt "${dirname}/.run.sh" ] ; then
ant run-sh
result=$?
if [ $result -ne 0 ] ; then
exit $result
fi
fi
# set the default settings dir to ${dirname}/temp, but allow it to be
# overridden
settingsdir="${dirname}/test"
prefsdir="${dirname}/temp"
found_settingsdir="no"
for opt in "$@"; do
if [ "${found_settingsdir}" = "yes" ]; then
# --settingsdir /path/to/... part 2
settingsdir="${opt}"
prefsdir="${settingsdir}"
break
elif [ "${opt}" = "--settingsdir" ]; then
# --settingsdir /path/to/... part 1
found_settingsdir="yes"
elif [[ "${opt}" =~ "--settingsdir=" ]]; then
# --settingsdir=/path/to/...
settingsdir="${opt#*=}"
prefsdir="${settingsdir}"
break;
fi
done
# if --settingsdir="" was passed, allow run.sh to use JMRI default, otherwise
# prepend the option token to ensure run.sh sets the settings dir correctly
if [ -n "${settingsdir}" ] ; then
settingsdir="--settingsdir=${settingsdir}"
fi
if [ -n "${prefsdir}" ] ; then
prefsdir="-Djmri.prefsdir=${prefsdir}"
fi
# tests are no longer with production classes, so append the directory containing
# tests to the classpaths
testclasspath="--cp:a=${dirname}/java/test-classes"
"${dirname}/.run.sh" "${settingsdir}" "${prefsdir}" "${testclasspath}" $@