diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-01-30 23:03:35 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-01-30 23:03:35 (GMT) |
commit | ff18a25e814dac5e9140c625b84d048962226244 (patch) | |
tree | db78d68aa71babf803ad7e6c70ac4f99f3dfcd41 /test/CacheDir/value_dependencies.py | |
parent | 0d4c31c7adc62f215e6a73d2efa7c2787bee6c83 (diff) | |
parent | 1e71abf4c79e74adff68eea8eb9b40bfbf1260c3 (diff) | |
download | SCons-ff18a25e814dac5e9140c625b84d048962226244.zip SCons-ff18a25e814dac5e9140c625b84d048962226244.tar.gz SCons-ff18a25e814dac5e9140c625b84d048962226244.tar.bz2 |
Merge branch 'issue-3469' of github.com:bdbaddog/scons into issue-3469
Diffstat (limited to 'test/CacheDir/value_dependencies.py')
-rw-r--r-- | test/CacheDir/value_dependencies.py | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/test/CacheDir/value_dependencies.py b/test/CacheDir/value_dependencies.py new file mode 100644 index 0000000..7992bef --- /dev/null +++ b/test/CacheDir/value_dependencies.py @@ -0,0 +1,52 @@ +#!/usr/bin/env python +# +# __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__" + +""" +Verify that bwuilds with caching work for an action with a Value as a child +in a variety of cases. Specifically: + +1. A source file that depends on a Value. +2. A source directory that depends on a Value. +3. A scanner that returns a Value and a directory that depends on a Value. +""" + +import TestSCons + +test = TestSCons.TestSCons() + +test.dir_fixture('value_dependencies') +test.subdir('cache') + +# First build, populates the cache +test.run(arguments='.') + +test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: |