summaryrefslogtreecommitdiffstats
path: root/test/Options.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-09-26 00:54:35 (GMT)
committerSteven Knight <knight@baldmt.com>2002-09-26 00:54:35 (GMT)
commit1523e6f372549807f31962bfbb9d429ead2db9d2 (patch)
tree922757c04f75bb1593cdc2831035474f731eabb5 /test/Options.py
parentd23e503a2499c58c9826b3b341ff33f79bc20b10 (diff)
downloadSCons-1523e6f372549807f31962bfbb9d429ead2db9d2.zip
SCons-1523e6f372549807f31962bfbb9d429ead2db9d2.tar.gz
SCons-1523e6f372549807f31962bfbb9d429ead2db9d2.tar.bz2
Add customizable variable helper. (Anthony Roach)
Diffstat (limited to 'test/Options.py')
-rw-r--r--test/Options.py123
1 files changed, 123 insertions, 0 deletions
diff --git a/test/Options.py b/test/Options.py
new file mode 100644
index 0000000..2b2d5a2
--- /dev/null
+++ b/test/Options.py
@@ -0,0 +1,123 @@
+#!/usr/bin/env python
+#
+# Copyright (c) 2001, 2002 Steven Knight
+#
+# 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__"
+
+import TestSCons
+import string
+
+test = TestSCons.TestSCons()
+
+test.write('SConstruct', """
+env = Environment()
+print env['CC']
+print env['CCFLAGS']
+Default(env.Alias('dummy'))
+""")
+test.run()
+cc, ccflags = string.split(test.stdout(), '\n')[:2]
+
+test.write('SConstruct', """
+opts = Options('custom.py')
+opts.Add('RELEASE_BUILD',
+ 'Set to 1 to build a release build',
+ 0,
+ None,
+ int)
+
+opts.Add('DEBUG_BUILD',
+ 'Set to 1 to build a debug build',
+ 1,
+ None,
+ int)
+
+opts.Add('CC',
+ 'The C compiler')
+
+def test_tool(env, platform):
+ if env['RELEASE_BUILD']:
+ env['CCFLAGS'] = env['CCFLAGS'] + ' -O'
+ if env['DEBUG_BUILD']:
+ env['CCFLAGS'] = env['CCFLAGS'] + ' -g'
+
+
+env = Environment(options=opts, tools=['default', test_tool])
+
+Help('Variables settable in custom.py or on the command line:\\n' + opts.GenerateHelpText(env))
+
+print env['RELEASE_BUILD']
+print env['DEBUG_BUILD']
+print env['CC']
+print env['CCFLAGS']
+
+Default(env.Alias('dummy'))
+
+""")
+
+def check(expect):
+ result = string.split(test.stdout(), '\n')
+ assert result[0:len(expect)] == expect, (result[0:len(expect)], expect)
+
+test.run()
+check(['0', '1', cc, ccflags + ' -g'])
+
+test.run(arguments='"RELEASE_BUILD=1"')
+check(['1', '1', cc, ccflags + ' -O -g'])
+
+test.run(arguments='"RELEASE_BUILD=1" "DEBUG_BUILD=0"')
+check(['1', '0', cc, ccflags + ' -O'])
+
+test.run(arguments='"CC=not_a_c_compiler"')
+check(['0', '1', 'not_a_c_compiler', ccflags + ' -g'])
+
+test.write('custom.py', """
+DEBUG_BUILD=0
+RELEASE_BUILD=1
+""")
+
+test.run()
+check(['1', '0', cc, ccflags + ' -O'])
+
+test.run(arguments='"DEBUG_BUILD=1"')
+check(['1', '1', cc, ccflags + ' -O -g'])
+
+test.run(arguments='-h')
+assert test.stdout() == """Variables settable in custom.py or on the command line:
+
+RELEASE_BUILD: Set to 1 to build a release build
+ default: 0
+ actual: 1
+
+DEBUG_BUILD: Set to 1 to build a debug build
+ default: 1
+ actual: 0
+
+CC: The C compiler
+ default: None
+ actual: %s
+
+Use scons -H for help about command-line options.
+"""%cc
+
+test.pass_test()