summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/SConfTests.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-02-22 06:34:14 (GMT)
committerSteven Knight <knight@baldmt.com>2009-02-22 06:34:14 (GMT)
commit140cb569328ee9904e7339932502307d035a8ee0 (patch)
treeb9c8610286de9c2c20f8625fc99f6a7d783d55a2 /src/engine/SCons/SConfTests.py
parente6acb0941b3a9415ed76e60d541096dedd026908 (diff)
downloadSCons-140cb569328ee9904e7339932502307d035a8ee0.zip
SCons-140cb569328ee9904e7339932502307d035a8ee0.tar.gz
SCons-140cb569328ee9904e7339932502307d035a8ee0.tar.bz2
Move the set_state(EXECUTED) call associated with pulling things
out of a CacheDir from CacheDir.py to Taskmaster.py. Ripple effects include adding a Node.FS.push_to_cache() method, so that logic can be invoked separately from the Node.built() method.
Diffstat (limited to 'src/engine/SCons/SConfTests.py')
-rw-r--r--src/engine/SCons/SConfTests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/engine/SCons/SConfTests.py b/src/engine/SCons/SConfTests.py
index 24cfb8d..2fa173d 100644
--- a/src/engine/SCons/SConfTests.py
+++ b/src/engine/SCons/SConfTests.py
@@ -207,6 +207,8 @@ class SConfTestCase(unittest.TestCase):
return None
def prepare(self):
pass
+ def push_to_cache(self):
+ pass
def retrieve_from_cache(self):
return 0
def build(self, **kw):