summaryrefslogtreecommitdiffstats
path: root/test/MSVC/batch.py
Commit message (Collapse)AuthorAgeFilesLines
* [PY 3.8] test fixes for file closings, rawstringsMats Wichmann2019-04-251-5/+9
| | | | | | | On a linux host (missing some things that may be on the Travis CI setup), Py3.8a3 now shows 19 fails, 1048 pass, with 84 Warning: messages. Signed-off-by: Mats Wichmann <mats@linux.com>
* Fix test so use os.sep instead of hardcoded backslash for MSVC_BATCH=true ↵William Deegan2018-03-241-5/+6
| | | | /Fo argument
* fix #3106 MSVC handling MSVC_BATCH with targetdir which requires escaping.William Deegan2018-03-241-3/+4
|
* py2/3 must_match mode='r' changesWilliam Deegan2017-03-131-10/+10
|
* remove mode b's py2/3William Deegan2017-03-131-4/+4
|
* Fix for backslash being treated as an escape characterThomas Tanner2016-01-301-2/+2
| | | | | On my windows system, my python is in c:\apps\32\python. Theres a lot of places where that \32 gets turned into an ascii character and the unit tests don't run.
* Fix issue 2627: MSVC_BATCH=False should turn off batch, not turn it on.Gary Oberbrunner2011-04-241-0/+13
|
* Move 2.0 changes collected in branches/pending back to trunk for furtherGreg Noel2010-03-251-4/+2
| | | | | development. Note that this set of changes is NOT backward-compatible; the trunk no longer works with Python 1.5.2, 2.0, or 2.1.
* Remove more unnecessary imports from test scripts.Steven Knight2009-02-111-2/+0
|
* Add emacs and vim editing settings to the bottom of *.py files.Steven Knight2009-02-091-0/+6
|
* Issue 1086: add support for generic batch build actions, andSteven Knight2009-01-091-0/+155
specific support for batched compilation for Microsoft Visual C/C++. Merged revisions 3819-3851,3854-3869,3871-3877,3880 via svnmerge from http://scons.tigris.org/svn/scons/branches/sgk_batch ........ r3820 | stevenknight | 2008-12-09 23:59:14 -0800 (Tue, 09 Dec 2008) | 6 lines Issue 1086: Batch compilation support: * $MSVC_BATCH to control Visual C/C++ batch compilation. * New $CHANGED_SOURCES, $CHANGED_TARGETS, $UNCHANGED_SOURCES and $UNCHANGED_TARGETS construction variables. * New Action(batch_key=, targets=) keyword arguments. ........ r3880 | stevenknight | 2009-01-07 20:50:41 -0800 (Wed, 07 Jan 2009) | 3 lines Use UniqueList objects to collect the all_children(), all_prerequisites() and all_sources() lists instead of calling uniquer_hashables() by hand. ........