summaryrefslogtreecommitdiff
path: root/morphlib/buildenvironment_tests.py
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-12-14 11:26:10 +0000
committerJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-12-17 12:09:24 +0000
commitc853e4aa39c978054c037d1e7061e939427d495c (patch)
tree5cd306f27e2789e886269501638e9e80b6f0ed79 /morphlib/buildenvironment_tests.py
parentf19efa182d0e53d97e163f980d6e221c55dd9c9b (diff)
downloadmorph-c853e4aa39c978054c037d1e7061e939427d495c.tar.gz
Fix default setting for compiler cache dir; update tests
Reviewed-by: Lars Wirzenius <lars.wirzenius@codethink.co.uk>
Diffstat (limited to 'morphlib/buildenvironment_tests.py')
-rw-r--r--morphlib/buildenvironment_tests.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/morphlib/buildenvironment_tests.py b/morphlib/buildenvironment_tests.py
index 7cb0f07b..61844c19 100644
--- a/morphlib/buildenvironment_tests.py
+++ b/morphlib/buildenvironment_tests.py
@@ -30,8 +30,6 @@ class BuildEnvironmentTests(unittest.TestCase):
'target-cflags': '',
'prefix': '/usr',
'no-ccache': True,
- 'ccache-remotedir': '',
- 'ccache-remotenlevels': 2,
'no-distcc': True,
'staging-chroot': False,
}
@@ -39,7 +37,6 @@ class BuildEnvironmentTests(unittest.TestCase):
'PATH': '/fake_bin',
}
self.default_path = 'no:such:path'
- self.remote_ccache = 'http://example.com/ccache'
def test_arch_defaults_to_host(self):
buildenv = buildenvironment.BuildEnvironment(self.settings)
@@ -128,12 +125,7 @@ class BuildEnvironmentTests(unittest.TestCase):
def test_ccache_vars_set(self):
self.settings['no-ccache'] = False
- self.settings['ccache-remotedir'] = self.remote_ccache
self.settings['no-distcc'] = False
buildenv = buildenvironment.BuildEnvironment(self.settings)
self.assertTrue(buildenv._ccache_path in buildenv.env['PATH'])
- self.assertEqual(buildenv.env['CCACHE_REMOTEDIR'],
- self.remote_ccache)
- self.assertEqual(buildenv.env['CCACHE_REMOTENLEVELS'],
- str(self.settings['ccache-remotenlevels']))
self.assertEqual(buildenv.env['CCACHE_PREFIX'], 'distcc')