diff options
author | Corneliu Stoicescu <corneliux.stoicescu@intel.com> | 2014-04-03 10:26:07 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-04 11:53:51 +0100 |
commit | 5d63aac6a854014cfa97ed18ab0782ce1beb9315 (patch) | |
tree | 4d26e8edb8b68cd90532efa6be21f4f06cad27b1 /meta | |
parent | b996f22f8bed0c587392e33cc58c4b9c673ad50e (diff) | |
download | poky-5d63aac6a854014cfa97ed18ab0782ce1beb9315.tar.gz |
selftest/sstatetests.py: Added 'populate_lic' to ignore_patterns
Because the sstate-cache-management script does not remove populate_lic
sstate files, we should ignore them when checking for removed files.
(From OE-Core rev: 5debc2af6672841c126cec5d747e2e3c6407c8be)
Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/selftest/sstatetests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/sstatetests.py b/meta/lib/oeqa/selftest/sstatetests.py index 27561cadad..35ff28b04a 100644 --- a/meta/lib/oeqa/selftest/sstatetests.py +++ b/meta/lib/oeqa/selftest/sstatetests.py | |||
@@ -153,7 +153,7 @@ class SStateTests(SStateBase): | |||
153 | target_config = [] | 153 | target_config = [] |
154 | global_config.append('') | 154 | global_config.append('') |
155 | target_config.append('PR = "0"') | 155 | target_config.append('PR = "0"') |
156 | self.run_test_sstate_cache_management_script('m4', global_config, target_config) | 156 | self.run_test_sstate_cache_management_script('m4', global_config, target_config, ignore_patterns=['populate_lic']) |
157 | 157 | ||
158 | def test_sstate_cache_management_script_using_pr_2(self): | 158 | def test_sstate_cache_management_script_using_pr_2(self): |
159 | global_config = [] | 159 | global_config = [] |
@@ -162,7 +162,7 @@ class SStateTests(SStateBase): | |||
162 | target_config.append('PR = "0"') | 162 | target_config.append('PR = "0"') |
163 | global_config.append('') | 163 | global_config.append('') |
164 | target_config.append('PR = "1"') | 164 | target_config.append('PR = "1"') |
165 | self.run_test_sstate_cache_management_script('m4', global_config, target_config) | 165 | self.run_test_sstate_cache_management_script('m4', global_config, target_config, ignore_patterns=['populate_lic']) |
166 | 166 | ||
167 | def test_sstate_cache_management_script_using_pr_3(self): | 167 | def test_sstate_cache_management_script_using_pr_3(self): |
168 | global_config = [] | 168 | global_config = [] |