diff options
author | Steven Knight <knight@baldmt.com> | 2002-02-21 09:57:19 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-02-21 09:57:19 (GMT) |
commit | 8c5d400a01f307aa7ef91366e390eb73b7551ba0 (patch) | |
tree | 1f225540585caf22ae901417051425e4eb4fbe27 /test/option-u.py | |
parent | f4ee118fe5616605078a067e3ac0a45cad49adfd (diff) | |
download | SCons-8c5d400a01f307aa7ef91366e390eb73b7551ba0.zip SCons-8c5d400a01f307aa7ef91366e390eb73b7551ba0.tar.gz SCons-8c5d400a01f307aa7ef91366e390eb73b7551ba0.tar.bz2 |
Implement the -u option (Task 39028). (Steve Leblanc)
Diffstat (limited to 'test/option-u.py')
-rw-r--r-- | test/option-u.py | 48 |
1 files changed, 43 insertions, 5 deletions
diff --git a/test/option-u.py b/test/option-u.py index 9f68ac5..dbeec6a 100644 --- a/test/option-u.py +++ b/test/option-u.py @@ -24,16 +24,54 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" -import TestSCons -import string +import os.path import sys +import TestSCons + test = TestSCons.TestSCons() -test.write('SConstruct', "") +python = sys.executable + +test.subdir('sub1', 'sub2', 'sub3') + +test.write('build.py', r""" +import sys +contents = open(sys.argv[2], 'rb').read() +file = open(sys.argv[1], 'wb') +file.write(contents) +file.close() +""") + +test.write('SConstruct', """ +B = Builder(name='B', action='%s build.py $TARGET $SOURCES') +env = Environment(BUILDERS = [B]) +env.B(target = 'sub1/foo.out', source = 'sub1/foo.in') +Default('.') +Export('env') +SConscript('sub2/SConscript') +env.B(target = 'sub3/baz.out', source = 'sub3/baz.in') +""" % python) + +test.write(['sub2', 'SConscript'], """ +Import('env') +env.B(target = 'bar.out', source = 'bar.in') +""") + +test.write(['sub1', 'foo.in'], "sub1/foo.in") +test.write(['sub2', 'bar.in'], "sub2/bar.in") +test.write(['sub3', 'baz.in'], "sub3/baz.in") + +test.run(arguments = '-u foo.out', chdir = 'sub1') + +test.fail_test(test.read(['sub1', 'foo.out']) != "sub1/foo.in") +test.fail_test(os.path.exists(test.workpath('sub2', 'bar.out'))) +test.fail_test(os.path.exists(test.workpath('sub3', 'baz.out'))) + +test.run(chdir = 'sub2', arguments = '-u') -test.run(arguments = '-u', - stderr = "Warning: the -u option is not yet implemented\n") +test.fail_test(test.read(['sub2', 'bar.out']) != "sub2/bar.in") +test.fail_test(os.path.exists(test.workpath('sub3', 'baz.out'))) test.pass_test() |