diff options
author | William Blevins <wblevins@gmail.com> | 2014-07-13 17:23:51 (GMT) |
---|---|---|
committer | William Blevins <wblevins@gmail.com> | 2014-07-13 17:23:51 (GMT) |
commit | 3030945eeb2121acbccab9db8fdf72926bf90510 (patch) | |
tree | 6741ed3ad9edeab23225630dfbe98fd1eaa96769 /test/Java | |
parent | 6ddc06eafa74e448a870dbb65461405709bef1ba (diff) | |
download | SCons-3030945eeb2121acbccab9db8fdf72926bf90510.zip SCons-3030945eeb2121acbccab9db8fdf72926bf90510.tar.gz SCons-3030945eeb2121acbccab9db8fdf72926bf90510.tar.bz2 |
Set default toolchain.
Other updates per code review.
Diffstat (limited to 'test/Java')
-rw-r--r-- | test/Java/DerivedSourceTest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Java/DerivedSourceTest.py b/test/Java/DerivedSourceTest.py index b700e1e..7478a1e 100644 --- a/test/Java/DerivedSourceTest.py +++ b/test/Java/DerivedSourceTest.py @@ -34,14 +34,14 @@ Repeatable with any N-tier, with N > 1, Java derived-source builds where any of the following conditions are meet: 1. The java class does not belong to the root package. 2. A java source (*.java) creates N targets (*.class) where N > 1. - -@author William Blevins -@version 2 March 2014 """ import os import TestSCons import SCons.Node.FS +import SCons.Defaults + +SCons.Defaults.DefaultEnvironment(tools = []) test = TestSCons.TestSCons() |