summaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2018-08-30 20:09:25 -0700
committerWilliam Deegan <bill@baddogconsulting.com>2018-08-30 20:09:25 -0700
commit3de25a92e801acec7afcdb9b563a132ca327327c (patch)
tree5a78501fa0aff4a440ae502798faf018174dafb3 /.travis
parent40982e03a34d869900d6ae2201c19cbdcf9a6d6f (diff)
downloadscons-git-3de25a92e801acec7afcdb9b563a132ca327327c.tar.gz
Attempt to fix py37 java falures. Which are likely caused by newer oracle java echoing values in _JAVA_OPTIONS env variable to stderr.
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 50331e585..7cdfaa79e 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -33,3 +33,7 @@ if [[ "$PYVER" == 27 ]]; then
tar xzf rel-3.0.12.tar.gz
cd swig-rel-3.0.12 && ./autogen.sh && ./configure --prefix=/usr && make && sudo make install && cd ..
fi
+
+# Clear this flag as newer Oracle Java's will echo to stderr any values set in it which breaks several java
+# tests
+unset _JAVA_OPTIONS \ No newline at end of file