summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest')
-rw-r--r--meta/lib/oeqa/selftest/cases/sstatetests.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/sstatetests.py b/meta/lib/oeqa/selftest/cases/sstatetests.py
index f2adf73263..56dfcdb0f3 100644
--- a/meta/lib/oeqa/selftest/cases/sstatetests.py
+++ b/meta/lib/oeqa/selftest/cases/sstatetests.py
@@ -268,6 +268,14 @@ class SStateCacheManagement(SStateBase):
268 self.assertTrue(global_config) 268 self.assertTrue(global_config)
269 self.assertTrue(target_config) 269 self.assertTrue(target_config)
270 self.assertTrue(len(global_config) == len(target_config), msg='Lists global_config and target_config should have the same number of elements') 270 self.assertTrue(len(global_config) == len(target_config), msg='Lists global_config and target_config should have the same number of elements')
271
272 for idx in range(len(target_config)):
273 self.append_config(global_config[idx])
274 self.append_recipeinc(target, target_config[idx])
275 bitbake(target)
276 self.remove_config(global_config[idx])
277 self.remove_recipeinc(target, target_config[idx])
278
271 self.config_sstate(temp_sstate_location=True, add_local_mirrors=[self.sstate_path]) 279 self.config_sstate(temp_sstate_location=True, add_local_mirrors=[self.sstate_path])
272 280
273 # For now this only checks if random sstate tasks are handled correctly as a group. 281 # For now this only checks if random sstate tasks are handled correctly as a group.