summaryrefslogtreecommitdiffstats
path: root/PCbuild/rt.bat
Commit message (Collapse)AuthorAgeFilesLines
* [2.7] bpo-27425: Be more explicit in .gitattributes (GH-840) (GH-2086)Zachary Ware2017-06-111-60/+60
| | | Also updates checked-in line endings in several files.
* Allow PCbuild\rt.bat to accept unlimited arguments for regrtest.Zachary Ware2015-09-041-2/+4
| | | | | This makes it possible to pass more than 7 tests by name through Tools\buildbot\test.bat
* Close #24508: Backport the 3.5 MSBuild project files.Zachary Ware2015-07-161-6/+4
| | | | | | | The old project files move to PC/VS9.0 and remain supported. VS2008 is still required to build 2.7; VS2010 (or later, plus Windows SDK 7.1) is *also* required to use the new project files.
* Clean up/refactor the batch scripts used for building on Windows.Zachary Ware2015-06-091-7/+9
| | | | | This is mostly a backport of issue #21907, but also includes a few extras necessary to make the bulidbot scripts as thin as possible.
* Issue #17202: Add .bat to .hgeol to force them to CRLF.Zachary Ware2015-04-131-58/+58
| | | | | Using LF can a script to fail if it tries to use a label that is split across 512 byte blocks. Who knows why.
* Issue #17896: Move Windows external lib sources from .. to externals.Zachary Ware2014-11-021-1/+1
|
* #17883: Fix buildbot testing of Tkinter on Windows. Patch by Zachary Ware.Ezio Melotti2013-05-051-2/+2
|
* Recorded rollback of revisions 84857,84870,84875 via svnmerge fromHirokazu Yamamoto2010-09-291-2/+2
| | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k
* Merged revisions 84857,84870,84875 via svnmerge fromHirokazu Yamamoto2010-09-191-2/+2
| | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84857 | hirokazu.yamamoto | 2010-09-17 17:53:31 +0900 | 1 line Let's see if tcl/tk test runs on windows buildbot with this fix. ........ r84870 | hirokazu.yamamoto | 2010-09-18 09:31:44 +0900 | 3 lines regrtest.py now runs python in build/test_python_xxx. (deeper than here) So failed to load tcl/tk dll because $(dist)/tcltk/bin was set to PATH as relative path. (Windows) ........ r84875 | hirokazu.yamamoto | 2010-09-18 13:02:52 +0900 | 1 line Applied r84870 to older compilers. ........
* Add -Wd and -3 to the flags used to run the tests on Windows.Ezio Melotti2010-03-311-1/+1
|
* Patch #2284: add -x64 option to rt.bat.Martin v. Löwis2008-03-141-4/+10
|
* Renamed PCBuild9 directory to PCBuildChristian Heimes2007-12-311-0/+52
|
* Moved PCbuild directory to PC/VS7.1Christian Heimes2007-12-311-52/+0
|
* More cmd.exe exploitation.Tim Peters2004-08-301-38/+50
|
* Since it's impossible to build Python using VC7.1 on a command.comTim Peters2004-08-301-6/+1
| | | | system, exploit cmd.exe's setlocal function in this directory.
* Updated test-runner .bat for new location of Tcl/Tk.Tim Peters2004-08-301-1/+1
| | | | | | | Replaced outcomes from native Tcl/Tk tests. Maybe the diffs are legit, maybe not. I noticed that the Tcl results I'm replacing here claimed both that there were no failures, and that one file had tests with failures, so I wasn't inclined to trust them <wink>.
* Temporarily add the Tcl/Tk bin directory to PATH, so that test_tcl canTim Peters2004-07-171-0/+4
| | | | | actually run. When it fails, it pops up a dialog box, and the test run hangs waiting for you to click OK -- that sucks too much to bear.
* Add -E and -tt options to the python invocations, as for the Unix tests.Guido van Rossum2002-08-071-2/+2
| | | | | The -tt means modules that mix tabs and spaces will be rejected. The -E refuses to believe Python options in the environment.
* Clean up the "docs".Tim Peters2001-02-191-7/+16
|
* Change Windows test to do a complete job of removing .pyc/.pyo filesTim Peters2001-02-111-4/+1
| | | | reachable from Lib/.
* Added -O option (to run python or python_d w/ -O),Tim Peters2001-01-231-8/+14
|
* When running the tests twice, stuck a "Press any key to continue ..." pauseTim Peters2001-01-201-6/+5
| | | | | | between passes: Win9x DOS boxes are limited to 50 lines max, and the result of the first pass scrolls off irretrievably otherwise. Also simplified the goto-laden logic a bit.
* Run tests twice by default, first time deleting .pyc/.pyo files.Tim Peters2001-01-191-2/+20
| | | | New option "-q" to leave .pyc/.pyo alone.
* Delete the bytecode from the library and tests before running theGuido van Rossum2001-01-191-0/+4
| | | | | | tests for the first time -- like the Unix Makefile does. This avoids not catching problems in the bytecode generator and/or bytecode marshalling.
* Added simple batch file to make running the test suite from the PCbuildTim Peters2000-09-151-0/+8
directory less tedious.