diff options
author | Steven Knight <knight@baldmt.com> | 2004-05-04 06:24:16 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-05-04 06:24:16 (GMT) |
commit | 10efdf16045175fdd2deaa9b23ca73ebe7ead441 (patch) | |
tree | 113871cf2d4060832b5a61b7da194892ce0dba40 | |
parent | bde114d6bf2c4c5c868be1c09738d701b41e3560 (diff) | |
download | SCons-10efdf16045175fdd2deaa9b23ca73ebe7ead441.zip SCons-10efdf16045175fdd2deaa9b23ca73ebe7ead441.tar.gz SCons-10efdf16045175fdd2deaa9b23ca73ebe7ead441.tar.bz2 |
Portability fixes for Win32.
-rw-r--r-- | src/engine/SCons/Node/FSTests.py | 12 | ||||
-rw-r--r-- | test/Chmod.py | 67 |
2 files changed, 43 insertions, 36 deletions
diff --git a/src/engine/SCons/Node/FSTests.py b/src/engine/SCons/Node/FSTests.py index 9a5be45..cebad00 100644 --- a/src/engine/SCons/Node/FSTests.py +++ b/src/engine/SCons/Node/FSTests.py @@ -1944,12 +1944,14 @@ class SaveStringsTestCase(unittest.TestCase): fs1.BuildDir('d1', 'src', duplicate=1) s = map(str, nodes) - assert s == ['src/f', 'd1/f', 'd0/b', 'd1/b'], s + expect = map(os.path.normpath, ['src/f', 'd1/f', 'd0/b', 'd1/b']) + assert s == expect, s modify(nodes) s = map(str, nodes) - assert s == ['src/f', 'src/f', 'd0/b', 'd1/b'], s + expect = map(os.path.normpath, ['src/f', 'src/f', 'd0/b', 'd1/b']) + assert s == expect, s SCons.Node.FS.save_strings(1) fs2 = SCons.Node.FS.FS(test.workpath('fs2')) @@ -1958,12 +1960,14 @@ class SaveStringsTestCase(unittest.TestCase): fs2.BuildDir('d1', 'src', duplicate=1) s = map(str, nodes) - assert s == ['src/f', 'd1/f', 'd0/b', 'd1/b'], s + expect = map(os.path.normpath, ['src/f', 'd1/f', 'd0/b', 'd1/b']) + assert s == expect, s modify(nodes) s = map(str, nodes) - assert s == ['src/f', 'd1/f', 'd0/b', 'd1/b'], s + expect = map(os.path.normpath, ['src/f', 'd1/f', 'd0/b', 'd1/b']) + assert s == expect, s diff --git a/test/Chmod.py b/test/Chmod.py index 517b83d..d0929dc 100644 --- a/test/Chmod.py +++ b/test/Chmod.py @@ -36,8 +36,11 @@ import TestSCons test = TestSCons.TestSCons() +# Note: Win32 basically has two modes that it can os.chmod() files to +# 0444 and 0666, and directories to 0555 and 0777, so we can only really +# oscillate between those values. test.write('SConstruct', """ -Execute(Chmod('f1', 0777)) +Execute(Chmod('f1', 0666)) Execute(Chmod('d2', 0777)) def cat(env, source, target): target = str(target[0]) @@ -49,13 +52,13 @@ def cat(env, source, target): Cat = Action(cat) env = Environment() env.Command('bar.out', 'bar.in', [Cat, - Chmod("f3", 0755), - Chmod("d4", 0755)]) + Chmod("f3", 0666), + Chmod("d4", 0777)]) env = Environment(FILE = 'f5') -env.Command('f6.out', 'f6.in', [Chmod('$FILE', 0775), Cat]) +env.Command('f6.out', 'f6.in', [Chmod('$FILE', 0666), Cat]) env.Command('f7.out', 'f7.in', [Cat, - Chmod('Chmod-$SOURCE', 0775), - Chmod('${TARGET}-Chmod', 0775)]) + Chmod('Chmod-$SOURCE', 0666), + Chmod('${TARGET}-Chmod', 0666)]) """) test.write('f1', "f1\n") @@ -71,63 +74,63 @@ test.write('f7.in', "f7.in\n") test.write('Chmod-f7.in', "Chmod-f7.in\n") test.write('f7.out-Chmod', "f7.out-Chmod\n") -os.chmod(test.workpath('f1'), 0700) -os.chmod(test.workpath('d2'), 0700) -os.chmod(test.workpath('f3'), 0700) -os.chmod(test.workpath('d4'), 0700) -os.chmod(test.workpath('f5'), 0700) -os.chmod(test.workpath('Chmod-f7.in'), 0700) -os.chmod(test.workpath('f7.out-Chmod'), 0700) +os.chmod(test.workpath('f1'), 0444) +os.chmod(test.workpath('d2'), 0555) +os.chmod(test.workpath('f3'), 0444) +os.chmod(test.workpath('d4'), 0555) +os.chmod(test.workpath('f5'), 0444) +os.chmod(test.workpath('Chmod-f7.in'), 0444) +os.chmod(test.workpath('f7.out-Chmod'), 0444) -expect = test.wrap_stdout(read_str = 'Chmod("f1", 0777)\nChmod("d2", 0777)\n', +expect = test.wrap_stdout(read_str = 'Chmod("f1", 0666)\nChmod("d2", 0777)\n', build_str = """\ cat("bar.out", "bar.in") -Chmod("f3", 0755) -Chmod("d4", 0755) -Chmod("f5", 0775) +Chmod("f3", 0666) +Chmod("d4", 0777) +Chmod("f5", 0666) cat("f6.out", "f6.in") cat("f7.out", "f7.in") -Chmod("Chmod-f7.in", 0775) -Chmod("f7.out-Chmod", 0775) +Chmod("Chmod-f7.in", 0666) +Chmod("f7.out-Chmod", 0666) """) test.run(options = '-n', arguments = '.', stdout = expect) s = stat.S_IMODE(os.stat(test.workpath('f1'))[stat.ST_MODE]) -test.fail_test(s != 0700) +test.fail_test(s != 0444) s = stat.S_IMODE(os.stat(test.workpath('d2'))[stat.ST_MODE]) -test.fail_test(s != 0700) +test.fail_test(s != 0555) test.must_not_exist('bar.out') s = stat.S_IMODE(os.stat(test.workpath('f3'))[stat.ST_MODE]) -test.fail_test(s != 0700) +test.fail_test(s != 0444) s = stat.S_IMODE(os.stat(test.workpath('d4'))[stat.ST_MODE]) -test.fail_test(s != 0700) +test.fail_test(s != 0555) s = stat.S_IMODE(os.stat(test.workpath('f5'))[stat.ST_MODE]) -test.fail_test(s != 0700) +test.fail_test(s != 0444) test.must_not_exist('f6.out') test.must_not_exist('f7.out') s = stat.S_IMODE(os.stat(test.workpath('Chmod-f7.in'))[stat.ST_MODE]) -test.fail_test(s != 0700) +test.fail_test(s != 0444) s = stat.S_IMODE(os.stat(test.workpath('f7.out-Chmod'))[stat.ST_MODE]) -test.fail_test(s != 0700) +test.fail_test(s != 0444) test.run() s = stat.S_IMODE(os.stat(test.workpath('f1'))[stat.ST_MODE]) -test.fail_test(s != 0777) +test.fail_test(s != 0666) s = stat.S_IMODE(os.stat(test.workpath('d2'))[stat.ST_MODE]) test.fail_test(s != 0777) test.must_match('bar.out', "bar.in\n") s = stat.S_IMODE(os.stat(test.workpath('f3'))[stat.ST_MODE]) -test.fail_test(s != 0755) +test.fail_test(s != 0666) s = stat.S_IMODE(os.stat(test.workpath('d4'))[stat.ST_MODE]) -test.fail_test(s != 0755) +test.fail_test(s != 0777) s = stat.S_IMODE(os.stat(test.workpath('f5'))[stat.ST_MODE]) -test.fail_test(s != 0775) +test.fail_test(s != 0666) test.must_match('f6.out', "f6.in\n") test.must_match('f7.out', "f7.in\n") s = stat.S_IMODE(os.stat(test.workpath('Chmod-f7.in'))[stat.ST_MODE]) -test.fail_test(s != 0775) +test.fail_test(s != 0666) s = stat.S_IMODE(os.stat(test.workpath('f7.out-Chmod'))[stat.ST_MODE]) -test.fail_test(s != 0775) +test.fail_test(s != 0666) test.pass_test() |