summaryrefslogtreecommitdiff
path: root/test/SConsignFile/use-dbhash.py
Commit message (Collapse)AuthorAgeFilesLines
* Normalized all sconsfiles and sub-sconsfiles to use algorithm if not ↵Jacob Cassagnol2021-11-091-9/+13
| | | | | | | | | defaulted to md5. Dir search now excludes all types of sconsfiles that are now created. Environment now defaults to the current scons filename instead of .sconsfile Sconsign now has a function used by a lot of code that gets the default sconsign filename Any tests referring to .sconsfile have now been changed, including one old legacy test.
* Fix broken mod to (unused) testMats Wichmann2020-12-081-1/+1
| | | | | | | | | An edit to the use-dbhash.py test file missed a bit. Might as well fix, although the test is always skipped since the Python dbm module it tests does not exist in any current Python version. Signed-off-by: Mats Wichmann <mats@linux.com>
* [PR #3836] while we're at it, update SConsignFile testsMats Wichmann2020-12-051-9/+9
| | | | | | | Formatting, copyright header, make sure to null out tools to speed up Windeows. Signed-off-by: Mats Wichmann <mats@linux.com>
* [PY 3.8] test fixes for file closings, rawstringsMats Wichmann2019-04-251-4/+2
| | | | | | | 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>
* Commit resolved conflicted merge.Russel Winder2016-04-101-1/+1
|\
| * Fix for backslash being treated as an escape characterThomas Tanner2016-01-301-1/+1
| | | | | | | | | | 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.
* | Result of raw 2to3 run (2to3-2.7); checkpoint for python3 conversion.Gary Oberbrunner2013-09-221-1/+1
|/
* Add tests of using SConsignFile() with Python dbm modules.Steven Knight2010-08-211-0/+96
Related fixes: explicitly close the db when we close it, and add a .close() method to dblite.py.