summaryrefslogtreecommitdiff
path: root/test/MSVC
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2010-04-06 01:29:47 +0000
committerWilliam Deegan <bill@baddogconsulting.com>2010-04-06 01:29:47 +0000
commit476d2dddcae993ace197aee306e29ac4563505dd (patch)
treee2b98ff4cc5f5ddf20c150391c83440ca5132a6a /test/MSVC
parenta53b634190470848efd49eee188821deae0c72da (diff)
downloadscons-476d2dddcae993ace197aee306e29ac4563505dd.tar.gz
Fix vc9.0 express issue, misspelling, and add testcase which would have exposed the issue.
Diffstat (limited to 'test/MSVC')
-rw-r--r--test/MSVC/TARGET_ARCH.py58
1 files changed, 58 insertions, 0 deletions
diff --git a/test/MSVC/TARGET_ARCH.py b/test/MSVC/TARGET_ARCH.py
new file mode 100644
index 00000000..9b2192de
--- /dev/null
+++ b/test/MSVC/TARGET_ARCH.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__"
+
+"""
+Test the ability to configure the $PCHCOM construction variable.
+"""
+
+import TestSCons
+import sys
+
+if sys.platform != 'win32':
+ msg = "Skipping Visual C/C++ test on non-Windows platform '%s'\n" % sys.platform
+ test.skip_test(msg)
+
+
+_python_ = TestSCons._python_
+
+test = TestSCons.TestSCons()
+
+test.write('SConstruct', """
+env_64 = Environment(tools=['default', 'msvc'],
+ TARGET_ARCH = 'amd64')
+env_32 = Environment(tools=['default', 'msvc'],
+ TARGET_ARCH = 'x86')
+""" % locals())
+
+test.run(arguments = ".")
+
+test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4: