summaryrefslogtreecommitdiffstats
path: root/test/SConsignFile/use-dbm.py
Commit message (Collapse)AuthorAgeFilesLines
* [ci skip] typo in error message in testWilliam Deegan2020-01-021-2/+2
|
* Fix use-dbm test to work with sconsign files using dbm but where the ↵William Deegan2020-01-011-7/+10
| | | | underlying dbm implementation still writes the file without applying a suffix (like .db). This is due to Travis-ci's py3.8's dbm not applying suffix. Which seems unusual, but still valid
* set tools=[] for test/SConsignFile/use-dbm.pyWilliam Deegan2019-12-281-1/+3
|
* [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>
* py2/3 set python path to be raw string literal py3 was trying to interpret ↵William Deegan2017-05-161-1/+1
| | | | path as unicode
* py2/3 use dbm.ndbm on py3 and plain dbm doesn't create .sconsign.db, but ↵William Deegan2017-04-241-3/+9
| | | | rather .sconsign and causes test to fail. Continue to use dbm on py2 as dbm.ndbm doesn't exist there
* 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/+99
Related fixes: explicitly close the db when we close it, and add a .close() method to dblite.py.