]> code.ossystems Code Review - openembedded-core.git/commitdiff
selftest/signing: add --batch to gpg invocation when importing keys
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>
Thu, 22 Mar 2018 13:55:17 +0000 (15:55 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 5 Apr 2018 14:11:15 +0000 (15:11 +0100)
Otherwise it may pop up windows asking for passphrases which breaks
automated testing.

Newer YP releases and master already have the fix.

[YOCTO #12521]

Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
meta/lib/oeqa/selftest/signing.py

index 3b5c2da0e0f7dc3d5cf8a974513b21b1e68751a3..02e5f5ad29dd46434c3bb8953b0401081613ea49 100644 (file)
@@ -26,7 +26,7 @@ class Signing(oeSelfTest):
         cls.pub_key_path = os.path.join(cls.testlayer_path, 'files', 'signing', "key.pub")
         cls.secret_key_path = os.path.join(cls.testlayer_path, 'files', 'signing', "key.secret")
 
-        runCmd('gpg --homedir %s --import %s %s' % (cls.gpg_dir, cls.pub_key_path, cls.secret_key_path))
+        runCmd('gpg --batch --homedir %s --import %s %s' % (cls.gpg_dir, cls.pub_key_path, cls.secret_key_path))
 
     @classmethod
     def tearDownClass(cls):