diff options
author | Steven Knight <knight@baldmt.com> | 2005-10-03 23:08:24 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-10-03 23:08:24 (GMT) |
commit | 357bb311e8ebe13ae5ec43e6fb2cb91aa16b8a15 (patch) | |
tree | 77acfc03c7fb062b25c4b64a49453dd0be8abf5e /runtest.py | |
parent | 1529ef17c861d83e5643e53640fd7971cf7456ef (diff) | |
download | SCons-357bb311e8ebe13ae5ec43e6fb2cb91aa16b8a15.zip SCons-357bb311e8ebe13ae5ec43e6fb2cb91aa16b8a15.tar.gz SCons-357bb311e8ebe13ae5ec43e6fb2cb91aa16b8a15.tar.bz2 |
Add a self-contained test for not rebuilding generated header files. (Patrick Mezard) Fix a runtest.py issue.
Diffstat (limited to 'runtest.py')
-rw-r--r-- | runtest.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -478,7 +478,10 @@ if old_pythonpath: os.pathsep + \ old_pythonpath -os.chdir(scons_script_dir) +try: + os.chdir(scons_script_dir) +except OSError: + pass class Unbuffered: def __init__(self, file): |