summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/sstatetests.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/sstatetests.py')
-rw-r--r--meta/lib/oeqa/selftest/sstatetests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/sstatetests.py b/meta/lib/oeqa/selftest/sstatetests.py
index 6642539ebf..f99d74684e 100644
--- a/meta/lib/oeqa/selftest/sstatetests.py
+++ b/meta/lib/oeqa/selftest/sstatetests.py
@@ -16,7 +16,7 @@ class SStateTests(SStateBase):
16 16
17 # Test sstate files creation and their location 17 # Test sstate files creation and their location
18 def run_test_sstate_creation(self, targets, distro_specific=True, distro_nonspecific=True, temp_sstate_location=True, should_pass=True): 18 def run_test_sstate_creation(self, targets, distro_specific=True, distro_nonspecific=True, temp_sstate_location=True, should_pass=True):
19 self.config_sstate(temp_sstate_location) 19 self.config_sstate(temp_sstate_location, [self.sstate_path])
20 20
21 if self.temp_sstate_location: 21 if self.temp_sstate_location:
22 bitbake(['-cclean'] + targets) 22 bitbake(['-cclean'] + targets)
@@ -60,7 +60,7 @@ class SStateTests(SStateBase):
60 60
61 # Test the sstate files deletion part of the do_cleansstate task 61 # Test the sstate files deletion part of the do_cleansstate task
62 def run_test_cleansstate_task(self, targets, distro_specific=True, distro_nonspecific=True, temp_sstate_location=True): 62 def run_test_cleansstate_task(self, targets, distro_specific=True, distro_nonspecific=True, temp_sstate_location=True):
63 self.config_sstate(temp_sstate_location) 63 self.config_sstate(temp_sstate_location, [self.sstate_path])
64 64
65 bitbake(['-ccleansstate'] + targets) 65 bitbake(['-ccleansstate'] + targets)
66 66
@@ -92,7 +92,7 @@ class SStateTests(SStateBase):
92 92
93 # Test rebuilding of distro-specific sstate files 93 # Test rebuilding of distro-specific sstate files
94 def run_test_rebuild_distro_specific_sstate(self, targets, temp_sstate_location=True): 94 def run_test_rebuild_distro_specific_sstate(self, targets, temp_sstate_location=True):
95 self.config_sstate(temp_sstate_location) 95 self.config_sstate(temp_sstate_location, [self.sstate_path])
96 96
97 bitbake(['-ccleansstate'] + targets) 97 bitbake(['-ccleansstate'] + targets)
98 98