diff options
author | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2021-09-22 19:54:05 (GMT) |
---|---|---|
committer | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2021-09-23 16:23:41 (GMT) |
commit | a6f3af3310410cfad4d4d010bab90c25a07dafe2 (patch) | |
tree | 9546cedf7c08e00368cfc8d40ec7d5a735f96d21 | |
parent | 22dcbb09a9c9dc3d3047c6f17a28940ef978de2a (diff) | |
download | SCons-a6f3af3310410cfad4d4d010bab90c25a07dafe2.zip SCons-a6f3af3310410cfad4d4d010bab90c25a07dafe2.tar.gz SCons-a6f3af3310410cfad4d4d010bab90c25a07dafe2.tar.bz2 |
import os module due to NameError exception due to 'os' is not defined.
-rwxr-xr-x | CHANGES.txt | 3 | ||||
-rw-r--r-- | test/MSVS/vs-6.0-exec.py | 1 | ||||
-rw-r--r-- | test/MSVS/vs-7.0-exec.py | 1 | ||||
-rw-r--r-- | test/MSVS/vs-7.1-exec.py | 1 |
4 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index c4cbdcd..26cf8a3 100755 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -9,6 +9,9 @@ NOTE: The 4.2.0 Release of SCons will deprecate Python 3.5 Support. Python 3.5 s RELEASE VERSION/DATE TO BE FILLED IN LATER + From Joseph Brill: + - Fix MSVS tests (vs-N.N-exec.py) for MSVS 6.0, 7.0, and 7.1 (import missing module). + From William Deegan: - Fix reproducible builds. Restore logic respecting SOURCE_DATE_EPOCH when set. - Fix version tests to work with updated scons --version output. (Date format changed) diff --git a/test/MSVS/vs-6.0-exec.py b/test/MSVS/vs-6.0-exec.py index 40f69c0..ab70872 100644 --- a/test/MSVS/vs-6.0-exec.py +++ b/test/MSVS/vs-6.0-exec.py @@ -29,6 +29,7 @@ Test that we can actually build a simple program using our generated Visual Studio 6 project (.dsp) and solution (.dsw) files. """ +import os import sys import TestSConsMSVS diff --git a/test/MSVS/vs-7.0-exec.py b/test/MSVS/vs-7.0-exec.py index a6235a7..3c41aa5 100644 --- a/test/MSVS/vs-7.0-exec.py +++ b/test/MSVS/vs-7.0-exec.py @@ -29,6 +29,7 @@ Test that we can actually build a simple program using our generated Visual Studio 7.0 project (.vcproj) and solution (.sln) files. """ +import os import sys import TestSConsMSVS diff --git a/test/MSVS/vs-7.1-exec.py b/test/MSVS/vs-7.1-exec.py index 7bb3055..f66b92d 100644 --- a/test/MSVS/vs-7.1-exec.py +++ b/test/MSVS/vs-7.1-exec.py @@ -29,6 +29,7 @@ Test that we can actually build a simple program using our generated Visual Studio 7.1 project (.vcproj) and solution (.sln) files """ +import os import sys import TestSConsMSVS |