diff options
author | Ross Burton <ross.burton@intel.com> | 2018-02-22 12:47:20 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-24 10:31:48 +0000 |
commit | 1bcbe159aa28edda070dc892962cbe9b35381088 (patch) | |
tree | f74e903facbff0c5f087b8e46e09a39480f549a7 | |
parent | 180513fea4f6d86647bfe1252d2c3c58c0f86800 (diff) | |
download | poky-1bcbe159aa28edda070dc892962cbe9b35381088.tar.gz |
sstatetests: pass the right files when comparing sigfiles
(From OE-Core rev: 65cc20690e7827df3d84ebea6357eebabb668f50)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/selftest/cases/sstatetests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/sstatetests.py b/meta/lib/oeqa/selftest/cases/sstatetests.py index 6735694263..7b008e409f 100644 --- a/meta/lib/oeqa/selftest/cases/sstatetests.py +++ b/meta/lib/oeqa/selftest/cases/sstatetests.py | |||
@@ -526,7 +526,7 @@ http_proxy = "http://example.com/" | |||
526 | # this is an expensive computation, thus just compare the first 'max_sigfiles_to_compare' k files | 526 | # this is an expensive computation, thus just compare the first 'max_sigfiles_to_compare' k files |
527 | max_sigfiles_to_compare = 20 | 527 | max_sigfiles_to_compare = 20 |
528 | first, rest = files[:max_sigfiles_to_compare], files[max_sigfiles_to_compare:] | 528 | first, rest = files[:max_sigfiles_to_compare], files[max_sigfiles_to_compare:] |
529 | compare_sigfiles(first, files1.keys(), files2.keys(), compare=True) | 529 | compare_sigfiles(first, files1, files2, compare=True) |
530 | compare_sigfiles(rest, files1.keys(), files2.keys(), compare=False) | 530 | compare_sigfiles(rest, files1, files2, compare=False) |
531 | 531 | ||
532 | self.fail("sstate hashes not identical.") | 532 | self.fail("sstate hashes not identical.") |