diff options
| author | Greg Noel <GregNoel@tigris.org> | 2010-05-28 09:40:40 (GMT) |
|---|---|---|
| committer | Greg Noel <GregNoel@tigris.org> | 2010-05-28 09:40:40 (GMT) |
| commit | 56309561f2396659965eda63b30c69043e17d3f6 (patch) | |
| tree | 2a9eaf225729bc320b75e8f0f5f70872b3a72c8f /test/Deprecated/SConscript-build_dir.py | |
| parent | 1611fe9bdefe760e4fbfd0a4ae85892a3094e19e (diff) | |
| download | SCons-56309561f2396659965eda63b30c69043e17d3f6.zip SCons-56309561f2396659965eda63b30c69043e17d3f6.tar.gz SCons-56309561f2396659965eda63b30c69043e17d3f6.tar.bz2 | |
http://scons.tigris.org/issues/show_bug.cgi?id=2365
Start the deprecation cycle for SourceCode() and its related factory functions.
Deprecation messages are added to the functions. Regression tests are modified
to deal with the messages being generated. Documentation is updated.
Diffstat (limited to 'test/Deprecated/SConscript-build_dir.py')
| -rw-r--r-- | test/Deprecated/SConscript-build_dir.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Deprecated/SConscript-build_dir.py b/test/Deprecated/SConscript-build_dir.py index 76ff688..c9ec07e 100644 --- a/test/Deprecated/SConscript-build_dir.py +++ b/test/Deprecated/SConscript-build_dir.py @@ -32,11 +32,11 @@ import TestSCons test = TestSCons.TestSCons(match = TestSCons.match_re_dotall) -test.write('SConstruct', """ -SConscript('SConscript', build_dir = 'build') +test.write('SConscript', """ +SConscript('DummyScript', build_dir = 'build') """) -test.write('SConscript', """ +test.write('DummyScript', """ """) msg = """The build_dir keyword has been deprecated; use the variant_dir keyword instead.""" |
