diff options
author | Steven Knight <knight@baldmt.com> | 2003-09-14 19:29:01 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-09-14 19:29:01 (GMT) |
commit | 3ab7670a45179b7a09eabc219842f6c224ad35da (patch) | |
tree | aca25fd119f68b44fa181a90bd535bfdfb01fed5 /test/Dir.py | |
parent | 1c2ac0f2ca0c14d1181add9cc66d9650fece1481 (diff) | |
download | SCons-3ab7670a45179b7a09eabc219842f6c224ad35da.zip SCons-3ab7670a45179b7a09eabc219842f6c224ad35da.tar.gz SCons-3ab7670a45179b7a09eabc219842f6c224ad35da.tar.bz2 |
Make more Environment methods from global functions.
Diffstat (limited to 'test/Dir.py')
-rw-r--r-- | test/Dir.py | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/test/Dir.py b/test/Dir.py new file mode 100644 index 0000000..5c4eaa3 --- /dev/null +++ b/test/Dir.py @@ -0,0 +1,58 @@ +#!/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 the Dir() global function and environment method work +correctly, and that the former does not try to expand construction +variables. +""" + +import TestSCons + +test = TestSCons.TestSCons() + +test.write('SConstruct', """ +env = Environment(FOO = 'fff', BAR = 'bbb') +print Dir('ddd') +print Dir('$FOO') +print Dir('${BAR}_$BAR') +print env.Dir('eee') +print env.Dir('$FOO') +print env.Dir('${BAR}_$BAR') +""") + +test.run(stdout = test.wrap_stdout(read_str = """\ +ddd +$FOO +${BAR}_$BAR +eee +fff +bbb_bbb +""", build_str = """\ +scons: `.' is up to date. +""")) + +test.pass_test() |