diff options
author | Steven Knight <knight@baldmt.com> | 2005-03-16 06:13:01 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-03-16 06:13:01 (GMT) |
commit | f38e126005e06aa1a42a21f7f26d137a65ba0883 (patch) | |
tree | d15a6452ba9b25e3fb2957a2e0ac95d653949331 /test/Entry.py | |
parent | 85f75bc99b31746620656567110b4b0c94c6ed12 (diff) | |
download | SCons-f38e126005e06aa1a42a21f7f26d137a65ba0883.zip SCons-f38e126005e06aa1a42a21f7f26d137a65ba0883.tar.gz SCons-f38e126005e06aa1a42a21f7f26d137a65ba0883.tar.bz2 |
Actually support a global Entry name (since we already documented it).
Diffstat (limited to 'test/Entry.py')
-rw-r--r-- | test/Entry.py | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/test/Entry.py b/test/Entry.py new file mode 100644 index 0000000..55fa90b --- /dev/null +++ b/test/Entry.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 Entry() 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 Entry('ddd') +print Entry('$FOO') +print Entry('${BAR}_$BAR') +print env.Entry('eee') +print env.Entry('$FOO') +print env.Entry('${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() |