Skip to main content
summaryrefslogtreecommitdiffstats
blob: edfd592b0a8475dc20ddd3f8adb9ef7f35eb18c2 (plain) (blame)
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
#!/usr/bin/env bash

source localBuildProperties.shsource  2>/dev/null

#   Utility to test the test.xml file. It's intended to allow rapid confirmation
#   that the test.xml file ends up "computing" correct values, for various versions
#   of java and ant.

#   In particular, ant cant be invoked with one version of java, but another version
#   of java used to actually run the tests.

#   Currently the file 'testing.properties' must be copied as peer of test.xml ... simply for
#   its absence to not cause an error.

#   Typically, to simulate production builds (tests) on Hudson, a 'vm.properties' tests will
#   also be present, where alternative, specific VMs could be specified. (This allows, for example,
#   the same Hudson setup to test Java 6, 7, or 8 (no matter what VM the ant task was
#   started with.

#   In addition to the console output. which should be captured, with something like
#      ./testTextXMLScript.sh | tee testoutput.txt
#   some data or set-up files will be created as they normally would if running the real tests.
#   The can be checked to be sure they are correct, and in correct (relative) locations.

# unset some common variables which we don't want (or, set ourselves)
unset JAVA_HOME
unset JAVA_ROOT
unset JAVA_JRE
unset CLASSPATH
unset JAVA_BINDIR
unset JRE_HOME


#   Different versions of Ant are specified here in test script, just to confirm
#   nothing is specific to any recent version of ant. (Though, some of the machines
#   have ant 1.6 set as 'default'!)
#export ANT_HOME=/shared/common/apache-ant-1.7.1
export ANT_HOME=/shared/common/apache-ant-1.8.4/
#export ANT_HOME=/shared/common/apache-ant-1.9.2

#   JAVA_HOME is, at least, what runs the ant instance. If no 'jvm' option is specified,
#   it also becomes the instance that runs the tests.
#export JAVA_HOME=/shared/common/jdk1.5.0-latest
#export JAVA_HOME=/shared/common/jdk1.6.0-latest
#export JAVA_HOME=/shared/common/jdk1.8.0_x64-latest
#export JAVA_HOME=/shared/common/jdk1.8.0_x64-latest
export JAVA_HOME=${JAVA_HOME:-/shared/common/jdk1.8.0_x64-latest}

export PATH=${JAVA_HOME}/bin:${ANT_HOME}/bin:/usr/local/bin:/usr/bin:/bin:${HOME}/bin

export TESTING_TEST_XML=true

#    There are a number of test-<something> methods in test xml which, by convention, mean
#    to simply test the test script itself. The test-all target runs all of those tests.
#ant -f test.xml test-all

ant -f test.xml test-all  -propertyfile vm.properties

Back to the top