summaryrefslogtreecommitdiffstats
path: root/test/ParseConfig.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-09-03 17:08:11 (GMT)
committerSteven Knight <knight@baldmt.com>2004-09-03 17:08:11 (GMT)
commit94279041d8533f385e2b2b970ad48bd0307a6acc (patch)
treecaba165331b44caffa931a42293a382d560af2cd /test/ParseConfig.py
parent24b9be093766cb2d566cd1220b15a94a193d2708 (diff)
downloadSCons-94279041d8533f385e2b2b970ad48bd0307a6acc.zip
SCons-94279041d8533f385e2b2b970ad48bd0307a6acc.tar.gz
SCons-94279041d8533f385e2b2b970ad48bd0307a6acc.tar.bz2
Remove all features deprecated in 0.93 or earlier.
Diffstat (limited to 'test/ParseConfig.py')
-rw-r--r--test/ParseConfig.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/ParseConfig.py b/test/ParseConfig.py
index 7e31a17..e7f50e5 100644
--- a/test/ParseConfig.py
+++ b/test/ParseConfig.py
@@ -60,15 +60,6 @@ print map(lambda x: str(x), env['LIBS'])
print env['CCFLAGS']
""" % (TestSCons.python, test_config))
-test.write('SConstruct3', """
-env = Environment(CPPPATH = [], LIBPATH = [], LIBS = [], CCFLAGS = '')
-ParseConfig(env, r"%s %s --libs --cflags")
-print env['CPPPATH']
-print env['LIBPATH']
-print map(lambda x: str(x), env['LIBS'])
-print env['CCFLAGS']
-""" % (TestSCons.python, test_config))
-
good_stdout = test.wrap_stdout(read_str = """\
['/usr/include/fum', 'bar']
['/usr/fax', 'foo']
@@ -80,12 +71,4 @@ test.run(arguments = ".", stdout = good_stdout)
test.run(arguments = "-f SConstruct2 .", stdout = good_stdout)
-test.run(arguments = "-f SConstruct3 .",
- stdout = good_stdout,
- stderr = """
-scons: warning: The ParseConfig() function has been deprecated;
- use the env.ParseConfig() method instead.
-File "SConstruct3", line 3, in ?
-""")
-
test.pass_test()