summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Scanner/RCTests.py
Commit message (Collapse)AuthorAgeFilesLines
* Switch unit tests to configurable runneranatoly techtonik2014-03-211-6/+6
|
* Handle DOS line endings in RC scanner. Fixes #2747.Gary Oberbrunner2011-05-301-0/+11
|
* Issue 2334: Use compatibility versions of collections.User{Dict,List,String}Steven Knight2010-04-071-4/+3
| | | | | instead of the deprecated User{Dict,List,String} modules. The two test scripts that use User{List,String} fall back on ImportError by hand.
* http://scons.tigris.org/issues/show_bug.cgi?id=2329Greg Noel2010-03-271-5/+3
| | | | | | | | | | | | | | | Applied a number of idiomatic changes. Uses of the 'sort()' method were converted into calls of 'sorted()' when possible and the sorted() expression was inserted into a subsequent statement whenever that made sense. The statement 'while 1:' was changed to 'while True:'. Names from the 'types' module (e.g., 'types.FooType') were converted to the equivalent build-in type (e.g., 'foo'). Comparisons between types were changed to use 'isinstance()'.
* Move 2.0 changes collected in branches/pending back to trunk for furtherGreg Noel2010-03-251-4/+4
| | | | | 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.
* Add emacs and vim editing settings to the bottom of *.py files.Steven Knight2009-02-091-0/+6
|
* Fixed an issue with the way the test was setting up the CPPPATH.William Deegan2008-09-261-4/+4
| | | | | | | Was causing buildbot failure on centos5 buildbot. Turns out some weird interaction with the bogus code which is replaced below was only happening when setuptools was installed in the python tree being used for tests.
* Updated fix for bug 2082 adding support for D3DFX keyword and fixing python ↵William Deegan2008-09-261-0/+4
| | | | 1.5.2 issue
* Sort the results of unittest for RC scanner before comparing them.William Deegan2008-09-251-0/+2
|
* Fix for bugs 402 and 2082 - implement scanner for windows resource files.William Deegan2008-09-251-0/+156
Basic unittest included