diff options
author | Steven Knight <knight@baldmt.com> | 2003-02-03 17:57:01 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-02-03 17:57:01 (GMT) |
commit | dcca819a1858987deb8ea5feba1819f85c447b77 (patch) | |
tree | abd1b3cb12b127b4b5a9128981267fa339415c99 /test/option--cs.py | |
parent | c7dcf9e7a31681c4a0d7043f2c4406be4e7648e9 (diff) | |
download | SCons-dcca819a1858987deb8ea5feba1819f85c447b77.zip SCons-dcca819a1858987deb8ea5feba1819f85c447b77.tar.gz SCons-dcca819a1858987deb8ea5feba1819f85c447b77.tar.bz2 |
Add CacheDir support.
Diffstat (limited to 'test/option--cs.py')
-rw-r--r-- | test/option--cs.py | 121 |
1 files changed, 115 insertions, 6 deletions
diff --git a/test/option--cs.py b/test/option--cs.py index 1ed6eb4..ff1b221 100644 --- a/test/option--cs.py +++ b/test/option--cs.py @@ -24,16 +24,125 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" +""" +Test printing build actions when using the --cache-show option and +retrieving derived files from a CacheDir. +""" + +import os.path +import shutil + import TestSCons -import string -import sys + +python = TestSCons.python test = TestSCons.TestSCons() -test.write('SConstruct', "") +test.subdir('cache', 'src') + +test.write(['src', 'build.py'], r""" +import sys +open('cat.out', 'ab').write(sys.argv[1] + "\n") +file = open(sys.argv[1], 'wb') +for src in sys.argv[2:]: + file.write(open(src, 'rb').read()) +file.close() +""") + +test.write(['src', 'SConstruct'], """ +def cat(env, source, target): + target = str(target[0]) + open('cat.out', 'ab').write(target + "\\n") + source = map(str, source) + f = open(target, "wb") + for src in source: + f.write(open(src, "rb").read()) + f.close() +env = Environment(BUILDERS={'Internal':Builder(action=cat), + 'External':Builder(action='%s build.py $TARGET $SOURCES')}) +env.External('aaa.out', 'aaa.in') +env.External('bbb.out', 'bbb.in') +env.Internal('ccc.out', 'ccc.in') +env.Internal('all', ['aaa.out', 'bbb.out', 'ccc.out']) +CacheDir(r'%s') +""" % (python, test.workpath('cache'))) + +test.write(['src', 'aaa.in'], "aaa.in\n") +test.write(['src', 'bbb.in'], "bbb.in\n") +test.write(['src', 'ccc.in'], "ccc.in\n") + +# Verify that a normal build works correctly, and clean up. +# This should populate the cache with our derived files. +test.run(chdir = 'src', arguments = '.') + +test.fail_test(test.read(['src', 'all']) != "aaa.in\nbbb.in\nccc.in\n") + +test.fail_test(test.read(['src', 'cat.out']) != "aaa.out\nbbb.out\nccc.out\nall\n") + +test.up_to_date(chdir = 'src', arguments = '.') + +test.run(chdir = 'src', arguments = '-c .') +test.unlink(['src', 'cat.out']) + +# Verify that we now retrieve the derived files from cache, +# not rebuild them. Then clean up. +test.run(chdir = 'src', arguments = '.', stdout = test.wrap_stdout("""\ +Retrieved `aaa.out' from cache +Retrieved `bbb.out' from cache +Retrieved `ccc.out' from cache +Retrieved `all' from cache +""")) + +test.fail_test(os.path.exists(test.workpath('src', 'cat.out'))) + +test.up_to_date(chdir = 'src', arguments = '.') + +test.run(chdir = 'src', arguments = '-c .') + +# Verify that using --cache-show reports the files as being rebuilt, +# even though we actually fetch them from the cache. Then clean up. +test.run(chdir = 'src', + arguments = '--cache-show .', + stdout = test.wrap_stdout("""\ +%s build.py aaa.out aaa.in +%s build.py bbb.out bbb.in +cat("ccc.out", "ccc.in") +cat("all", ["aaa.out", "bbb.out", "ccc.out"]) +""" % (python, python))) + +test.fail_test(os.path.exists(test.workpath('src', 'cat.out'))) + +test.up_to_date(chdir = 'src', arguments = '.') + +test.run(chdir = 'src', arguments = '-c .') + +# Verify that using --cache-show -n reports the files as being rebuilt, +# even though we don't actually fetch them from the cache. No need to +# clean up. +test.run(chdir = 'src', + arguments = '--cache-show -n .', + stdout = test.wrap_stdout("""\ +%s build.py aaa.out aaa.in +%s build.py bbb.out bbb.in +cat("ccc.out", "ccc.in") +cat("all", ["aaa.out", "bbb.out", "ccc.out"]) +""" % (python, python))) + +test.fail_test(os.path.exists(test.workpath('src', 'cat.out'))) + +test.fail_test(os.path.exists(test.workpath('src', 'aaa.out'))) +test.fail_test(os.path.exists(test.workpath('src', 'bbb.out'))) +test.fail_test(os.path.exists(test.workpath('src', 'ccc.out'))) +test.fail_test(os.path.exists(test.workpath('src', 'all'))) + +# Verify that using --cache-show -s doesn't report anything, even though +# we do fetch the files from the cache. No need to clean up. +test.run(chdir = 'src', + arguments = '--cache-show -s .', + stdout = "") -test.run(arguments = '--cache-show .', - stderr = "Warning: the --cache-show option is not yet implemented\n") +test.fail_test(test.read(['src', 'all']) != "aaa.in\nbbb.in\nccc.in\n") +test.fail_test(os.path.exists(test.workpath('src', 'cat.out'))) +# All done. test.pass_test() - |