]> code.ossystems Code Review - openembedded-core.git/commitdiff
sstatetests: pass the right files when comparing sigfiles
authorRoss Burton <ross.burton@intel.com>
Thu, 22 Feb 2018 12:47:20 +0000 (12:47 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 24 Feb 2018 10:31:35 +0000 (10:31 +0000)
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oeqa/selftest/cases/sstatetests.py

index 673569426344d1de0b28e33d8a185500f6c72476..7b008e409f42d3c867b0eb019e9f7ddaa6cfe876 100644 (file)
@@ -526,7 +526,7 @@ http_proxy = "http://example.com/"
         # this is an expensive computation, thus just compare the first 'max_sigfiles_to_compare' k files
         max_sigfiles_to_compare = 20
         first, rest = files[:max_sigfiles_to_compare], files[max_sigfiles_to_compare:]
-        compare_sigfiles(first, files1.keys(), files2.keys(), compare=True)
-        compare_sigfiles(rest, files1.keys(), files2.keys(), compare=False)
+        compare_sigfiles(first, files1, files2, compare=True)
+        compare_sigfiles(rest, files1, files2, compare=False)
 
         self.fail("sstate hashes not identical.")