diff options
author | Russel Winder <russel@winder.org.uk> | 2014-09-05 17:47:51 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2014-09-05 17:47:51 (GMT) |
commit | ea1898b916bbaceab6ecff490b51606ba0b311dc (patch) | |
tree | d3dbffc586d4b7be9de865d98a65230d6fefaef7 /test/D/SharedObjects/sconstest-ldc.py | |
parent | 074a3c0d96b7a02284b3c67d837d3753731e68c8 (diff) | |
download | SCons-ea1898b916bbaceab6ecff490b51606ba0b311dc.zip SCons-ea1898b916bbaceab6ecff490b51606ba0b311dc.tar.gz SCons-ea1898b916bbaceab6ecff490b51606ba0b311dc.tar.bz2 |
The tests for the changes already commited to the tools for dealing with shared libraries.
Diffstat (limited to 'test/D/SharedObjects/sconstest-ldc.py')
-rw-r--r-- | test/D/SharedObjects/sconstest-ldc.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/test/D/SharedObjects/sconstest-ldc.py b/test/D/SharedObjects/sconstest-ldc.py new file mode 100644 index 0000000..f61efbc --- /dev/null +++ b/test/D/SharedObjects/sconstest-ldc.py @@ -0,0 +1,37 @@ +""" +Test compiling and executing using the ldc tool. +""" + +# +# __COPYRIGHT__ +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# + +__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" + +from Common.common import testForTool +testForTool('ldc') + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: |