summaryrefslogtreecommitdiffstats
path: root/test/option--profile.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-11-06 12:25:25 (GMT)
committerSteven Knight <knight@baldmt.com>2002-11-06 12:25:25 (GMT)
commit8dbe61168174137944a5bc55ea5a9ff389336376 (patch)
treeb507cef9d3ffa1248dde67c7f26368841c148b42 /test/option--profile.py
parentd3a159a23fdeaa76c7931c7f8b1b7dafd43b4b99 (diff)
downloadSCons-8dbe61168174137944a5bc55ea5a9ff389336376.zip
SCons-8dbe61168174137944a5bc55ea5a9ff389336376.tar.gz
SCons-8dbe61168174137944a5bc55ea5a9ff389336376.tar.bz2
Refactor command-line parsing. (Steve Leblanc)
Diffstat (limited to 'test/option--profile.py')
-rw-r--r--test/option--profile.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/option--profile.py b/test/option--profile.py
index 6d7efe4..5ba9c46 100644
--- a/test/option--profile.py
+++ b/test/option--profile.py
@@ -49,9 +49,9 @@ stats.strip_dirs().print_stats()
s = sys.stdout.getvalue()
test.fail_test(string.find(s, '__init__.py') == -1)
-test.fail_test(string.find(s, 'option_v') == -1)
+test.fail_test(string.find(s, 'print_version') == -1)
test.fail_test(string.find(s, 'SCons.Script.main()') == -1)
-test.fail_test(string.find(s, 'getopt.py') == -1)
+test.fail_test(string.find(s, 'option_parser.py') == -1)
scons_prof = test.workpath('scons2.prof')
@@ -70,9 +70,9 @@ stats.strip_dirs().print_stats()
s = sys.stdout.getvalue()
test.fail_test(string.find(s, '__init__.py') == -1)
-test.fail_test(string.find(s, 'option_v') == -1)
+test.fail_test(string.find(s, 'print_version') == -1)
test.fail_test(string.find(s, 'SCons.Script.main()') == -1)
-test.fail_test(string.find(s, 'getopt.py') == -1)
+test.fail_test(string.find(s, 'option_parser.py') == -1)
test.pass_test()