diff options
Diffstat (limited to 'meta/lib/oeqa/selftest/sstatetests.py')
-rw-r--r-- | meta/lib/oeqa/selftest/sstatetests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/sstatetests.py b/meta/lib/oeqa/selftest/sstatetests.py index e3f819c634..783d3d07b9 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) |
@@ -63,7 +63,7 @@ class SStateTests(SStateBase): | |||
63 | 63 | ||
64 | # Test the sstate files deletion part of the do_cleansstate task | 64 | # Test the sstate files deletion part of the do_cleansstate task |
65 | def run_test_cleansstate_task(self, targets, distro_specific=True, distro_nonspecific=True, temp_sstate_location=True): | 65 | def run_test_cleansstate_task(self, targets, distro_specific=True, distro_nonspecific=True, temp_sstate_location=True): |
66 | self.config_sstate(temp_sstate_location) | 66 | self.config_sstate(temp_sstate_location, [self.sstate_path]) |
67 | 67 | ||
68 | bitbake(['-ccleansstate'] + targets) | 68 | bitbake(['-ccleansstate'] + targets) |
69 | 69 | ||
@@ -105,7 +105,7 @@ class SStateTests(SStateBase): | |||
105 | 105 | ||
106 | # Test rebuilding of distro-specific sstate files | 106 | # Test rebuilding of distro-specific sstate files |
107 | def run_test_rebuild_distro_specific_sstate(self, targets, temp_sstate_location=True): | 107 | def run_test_rebuild_distro_specific_sstate(self, targets, temp_sstate_location=True): |
108 | self.config_sstate(temp_sstate_location) | 108 | self.config_sstate(temp_sstate_location, [self.sstate_path]) |
109 | 109 | ||
110 | bitbake(['-ccleansstate'] + targets) | 110 | bitbake(['-ccleansstate'] + targets) |
111 | 111 | ||