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--cf.py | |
parent | c7dcf9e7a31681c4a0d7043f2c4406be4e7648e9 (diff) | |
download | SCons-dcca819a1858987deb8ea5feba1819f85c447b77.zip SCons-dcca819a1858987deb8ea5feba1819f85c447b77.tar.gz SCons-dcca819a1858987deb8ea5feba1819f85c447b77.tar.bz2 |
Add CacheDir support.
Diffstat (limited to 'test/option--cf.py')
-rw-r--r-- | test/option--cf.py | 97 |
1 files changed, 89 insertions, 8 deletions
diff --git a/test/option--cf.py b/test/option--cf.py index 94e1fdb..47847d4 100644 --- a/test/option--cf.py +++ b/test/option--cf.py @@ -24,19 +24,100 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" +""" +Test populating a CacheDir with the --cache-force option. +""" + +import os.path +import shutil + import TestSCons -import string -import sys test = TestSCons.TestSCons() -test.write('SConstruct', "") +test.subdir('cache', 'src') + +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={'Cat':Builder(action=cat)}) +env.Cat('aaa.out', 'aaa.in') +env.Cat('bbb.out', 'bbb.in') +env.Cat('ccc.out', 'ccc.in') +env.Cat('all', ['aaa.out', 'bbb.out', 'ccc.out']) +CacheDir(r'%s') +""" % 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. DO NOT 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 = '.') + +# Blow away and recreate the CacheDir, then verify that --cache-force +# repopulates the cache with the local built targets. DO NOT CLEAN UP. +shutil.rmtree(test.workpath('cache')) +test.subdir('cache') + +test.run(chdir = 'src', arguments = '--cache-force .') + +test.run(chdir = 'src', arguments = '-c .') + +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'))) + +# Blow away and recreate the CacheDir, then verify that --cache-populate +# repopulates the cache with the local built targets. DO NOT CLEAN UP. +shutil.rmtree(test.workpath('cache')) +test.subdir('cache') + +test.run(chdir = 'src', arguments = '--cache-populate .') + +test.run(chdir = 'src', arguments = '-c .') -test.run(arguments = '--cache-force .', - stderr = "Warning: the --cache-force option is not yet implemented\n") +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.run(arguments = '--cache-populate .', - stderr = "Warning: the --cache-populate option is not yet implemented\n") +test.fail_test(os.path.exists(test.workpath('src', 'cat.out'))) +# All done. test.pass_test() - |