summaryrefslogtreecommitdiff
path: root/morphlib/stagingarea_tests.py
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-04-18 13:19:45 +0100
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-04-18 18:29:25 +0100
commit0050c28846e9b40332b073c1a41dbb594fb3d26b (patch)
tree788629635283cb3e8d4b45d71092581f532b0e8d /morphlib/stagingarea_tests.py
parent097dd0c085a0aa13af929db04b7ef10e7564698f (diff)
downloadmorph-0050c28846e9b40332b073c1a41dbb594fb3d26b.tar.gz
Make StagingArea get temporary directory separately from root directory
When we are not using --staging-chroot (e.g., bootstrap), we need to specify the temporary directory separately, because it needs to obey things like $TMPDIR.
Diffstat (limited to 'morphlib/stagingarea_tests.py')
-rw-r--r--morphlib/stagingarea_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/stagingarea_tests.py b/morphlib/stagingarea_tests.py
index 96d00890..ea2de291 100644
--- a/morphlib/stagingarea_tests.py
+++ b/morphlib/stagingarea_tests.py
@@ -37,7 +37,7 @@ class StagingAreaTests(unittest.TestCase):
self.tempdir = tempfile.mkdtemp()
self.staging = os.path.join(self.tempdir, 'staging')
self.created_dirs = []
- self.sa = morphlib.stagingarea.StagingArea(self.staging)
+ self.sa = morphlib.stagingarea.StagingArea(self.staging, self.staging)
def tearDown(self):
shutil.rmtree(self.tempdir)
@@ -69,7 +69,7 @@ class StagingAreaTests(unittest.TestCase):
self.assertEqual(self.sa.dirname, self.staging)
def test_accepts_root_directory(self):
- sa = morphlib.stagingarea.StagingArea('/')
+ sa = morphlib.stagingarea.StagingArea('/', '/tmp')
self.assertEqual(sa.dirname, '/')
def test_creates_build_directory(self):