diff options
author | Steven Knight <knight@baldmt.com> | 2003-11-10 16:13:15 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-11-10 16:13:15 (GMT) |
commit | 01c5472bd1ee03fd15b52e18eaf955dd75d14492 (patch) | |
tree | 386f3ae3eac37497adf92f1a1539cd9f7ce13bd3 /test/LIBPATH.py | |
parent | a1cc9f13fe88795ae6d1ea043694381510a4a078 (diff) | |
download | SCons-01c5472bd1ee03fd15b52e18eaf955dd75d14492.zip SCons-01c5472bd1ee03fd15b52e18eaf955dd75d14492.tar.gz SCons-01c5472bd1ee03fd15b52e18eaf955dd75d14492.tar.bz2 |
Use sys.stdout.write() instead of print so line feeds in -j output will stay (more) consistent. Fix suffix-handling on case-insensitive Cygwin systems. Test fixes for Cygwin portability. (Chad Austin)
Diffstat (limited to 'test/LIBPATH.py')
-rw-r--r-- | test/LIBPATH.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/LIBPATH.py b/test/LIBPATH.py index 6e2a836..d691af2 100644 --- a/test/LIBPATH.py +++ b/test/LIBPATH.py @@ -31,14 +31,14 @@ import time _exe = TestSCons._exe _dll = TestSCons._dll -lib_ = TestSCons.lib_ +dll_ = TestSCons.dll_ test = TestSCons.TestSCons() test.subdir('lib1', 'lib2') prog1 = test.workpath('prog') + _exe -prog2 = test.workpath(lib_ + 'shlib') + _dll +prog2 = test.workpath(dll_ + 'shlib') + _dll test.write('SConstruct', """ env1 = Environment(LIBS = [ 'foo1' ], |