summaryrefslogtreecommitdiffstats
path: root/test/Java
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2018-11-06 02:06:45 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2018-11-06 02:06:45 (GMT)
commit8ed65dec4a099c39e3e6b7f2d2f97145066ac882 (patch)
treecc87334eec7232ddd8fc8c20935c745e4118b4df /test/Java
parentfe16533afb684f6f9f64c8bff1b3af572c02cdf7 (diff)
downloadSCons-8ed65dec4a099c39e3e6b7f2d2f97145066ac882.zip
SCons-8ed65dec4a099c39e3e6b7f2d2f97145066ac882.tar.gz
SCons-8ed65dec4a099c39e3e6b7f2d2f97145066ac882.tar.bz2
get rid of code copying PATH from os.environ
Diffstat (limited to 'test/Java')
-rw-r--r--test/Java/multi-step.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Java/multi-step.py b/test/Java/multi-step.py
index 2e2ff56..f5ee257 100644
--- a/test/Java/multi-step.py
+++ b/test/Java/multi-step.py
@@ -45,6 +45,8 @@ swig = test.where_is('swig')
if not swig:
test.skip_test('Can not find installed "swig", skipping test.\n')
+# Skip this test on AppVeyor
+
# Skip this test as SCons doesn't (currently) predict the generated
# inner/anonymous class generated .class files generated by gcj
# and so will always fail
@@ -82,7 +84,7 @@ else:
env=Environment(tools = tools,
CPPPATH=["$JAVAINCLUDES"])
Export('env')
-env.PrependENVPath('PATH',os.environ.get('PATH',[]))
+# env.PrependENVPath('PATH',os.environ.get('PATH',[]))
env['INCPREFIX']='-I'
env.Append(SWIGFLAGS=['-c++','$_CPPINCFLAGS'])