summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Test is failing on Windows 7 and Linux when PRESERVE is used. dirlist is ↵Daniel Moody2017-04-231-1/+1
| | | | | | saved as unicode, so printing it must also be unicode. Tested with py2 and py3.
* Part 2 of fix for bug # 2979. Fix target to be the .dll target node output ↵William Deegan2017-04-211-2/+2
| | | | from env.SharedLibrary()
* merge headsWilliam Deegan2017-04-212-2/+5
|\
| * Fix bug #2979William Deegan2017-04-212-2/+5
| | | | | | | | | | | | Example code for MSVSProject had syntax errors. http://scons.tigris.org/issues/show_bug.cgi?id=2979
* | merge headsWilliam Deegan2017-04-192-4/+21
|\ \ | |/
| * py2/3 fix logic for reraising exceptions. A taskmaster test was failing ↵William Deegan2017-04-191-1/+7
| | | | | | | | because the passed exception value wasn't an exception and thus couldn't be reraised as is. Added logic to create an exception with the value and raise that
| * py2/3 handle differences between py2 and 3 on reading/writing binary data to ↵William Deegan2017-04-191-3/+14
| | | | | | | | stdin/stdout
* | mergeWilliam Deegan2017-04-181-2/+2
|\ \ | |/
| * py2/3 swap to use test.must_match with mode='r'William Deegan2017-04-181-2/+2
| |
* | mergeWilliam Deegan2017-04-183-5/+3
|\ \ | |/
| * py2/3 no auto stringification for None in py3William Deegan2017-04-181-1/+1
| |
| * py2/3 no auto stringification for None in py3William Deegan2017-04-181-1/+1
| |
| * py2/3 - syntax for wrong number of arguments to functions changes for py3, ↵William Deegan2017-04-181-3/+1
| | | | | | | | added to valid output
* | mergeWilliam Deegan2017-04-180-0/+0
|\ \ | |/ |/|
| * update from scons/sconsWilliam Deegan2017-04-183-1/+16
| |\
* | \ py2/3 Fix re-raising stored exception. Previously we were dropping contents ↵William Deegan2017-04-184-2/+19
|\ \ \ | |/ / |/| / | |/ of Exception. Plus merge more complete removal of sccs and rcs source handling per deprecation/removal.
| * Merged in bdbaddog/scons (pull request #451)William Deegan2017-04-181-3/+7
| |\ | | | | | | | | | OSX testing fixes
| * | osx: disable mixedDandC test until a good way to specify correct gcc is foundWilliam Deegan2017-04-181-0/+10
| | |
| * | fix test for osx (with macports only at this point)William Deegan2017-04-181-0/+4
| | |
| * | fix test to not run on OSXWilliam Deegan2017-04-181-1/+2
| | |
* | | more removal of sccs and rcs builder logicWilliam Deegan2017-04-173-133/+2
| | |
* | | CHANGES for xsltproc choosing logic changesWilliam Deegan2017-04-171-0/+3
| | |
* | | add notes to xsltproc logic with future TODO's for future improvementsWilliam Deegan2017-04-171-0/+4
| |/ |/|
* | set priority for finding xsltproc toolsWilliam Deegan2017-04-171-3/+7
|/
* Merged scons/scons into defaultWilliam Deegan2017-04-171-1/+0
|\
| * fix Manifest.in which was causing bootstrap.py to fail due to removal of Sig.pyWilliam Deegan2017-04-171-1/+0
| |
* | Merged in gauravjuvekar/scons (pull request #447)William Deegan2017-04-163-131/+1
|\ \ | |/ | | | | Fix failing tests from merging #427
| * remove deprecated module SCons.SigWilliam Deegan2017-04-153-131/+1
| |
* | Try to fix some more py2/3 tests becuase of str vs bytearrayGaurav Juvekar2017-04-162-2/+12
|/
* merge from upstreamWilliam Deegan2017-04-159-35/+84
|\
| * Merged in gauravjuvekar/scons (pull request #443)William Deegan2017-04-1519-39/+142
| |\ | | | | | | | | | Fix the Copy-Action and Copy-Symlink test case for py2/3
| | * Merged in gauravjuvekar/scons (pull request #446)William Deegan2017-04-155-31/+37
| | |\ | | | | | | | | | | | | py2/3 fix for test/Value
| | | * Dirty hack for failing test/sconsign/script/Configure.pyGaurav Juvekar2017-04-141-0/+5
| | | |
| | | * Fix broken testsGaurav Juvekar2017-04-113-26/+26
| | | |
| | | * py2/3 fix for test/Value.pyGaurav Juvekar2017-04-111-5/+6
| | | |
| | * | Merged in gauravjuvekar/scons (pull request #427)William Deegan2017-04-1562-895/+1281
| | |\ \ | | | |/ | | | | | | | | string-escape unicode characters while printing --tree
| | * | Add contribution to src/CHANGES.txtGaurav Juvekar2017-03-271-0/+4
| | | |
| | * | Make --tree=all work with Python 3Gaurav Juvekar2017-03-272-2/+21
| | | | | | | | | | | | | | | | The codecs module is used which is distributed in the python standard library.
| | * | Reword comment in test case to highlight that unicode is printed escapedGaurav Juvekar2017-03-261-1/+1
| | | |
| | * | string-escape unicode characters while printing --treeGaurav Juvekar2017-03-262-4/+21
| | | | | | | | | | | | | | | | Fixes #2910
| * | | Fix the Copy-Action test case for py2/3Gaurav Juvekar2017-04-081-1/+4
| | | |
* | | | py2/3 change to read sconscripts as binary file. at least ↵William Deegan2017-04-101-3/+4
| | | | | | | | | | | | | | | | test/packaging/rpm/internationalization.py was failing because an open in py3 without specified encoding with LANG=C was trying to decode the file as ascii and it contained unicode characters and was failing. So far I haven't found any tests failing from this change
* | | | switch to os.system as in py3 os.popen() seemed to not have completed untar ↵William Deegan2017-04-101-1/+1
| | | | | | | | | | | | | | | | before the test checked for files
* | | | mergeWilliam Deegan2017-04-091-0/+1
|\ \ \ \
| * | | | For docbook, stop looking after you find the first tool. It looks like ↵William Deegan2017-04-091-0/+1
| | |_|/ | |/| | | | | | | | | | saxon-xslt causes the tests to fail. Dirk?
* | | | py2/3 initial changes to try and get SCons build working with py3William Deegan2017-04-091-10/+25
|/ / /
* | | osx: fix get_platform_python_info() to work on mac.William Deegan2017-04-081-1/+4
| | |
* | | pep8William Deegan2017-04-081-0/+1
| | |
* | | osx: add logic to enable versioned shared libraries on osx/darwin. For now ↵William Deegan2017-04-081-0/+8
| | | | | | | | | | | | it's commented out
* | | add docstringWilliam Deegan2017-04-081-1/+3
| | |