[oe-commits] [openembedded-core] 19/20: oeqa/sdk/cases/buildcpio: enable use of cached cpio from DL_DIR

git at git.openembedded.org git at git.openembedded.org
Mon Apr 10 23:58:57 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 2f35d5ba3828c9afbcc0bc302062b66e0688dfed
Author: Joshua Lock <joshua.g.lock at intel.com>
AuthorDate: Mon Apr 10 12:13:39 2017 +0100

    oeqa/sdk/cases/buildcpio: enable use of cached cpio from DL_DIR
    
    All build project test cases will try to copy the requested source
    artefacts from DL_DIR before fetching. This testcase is referencing bzipped
    tarball whereas the recipe fetches a gzipped tarball.
    
    Switch to fetching the gzipped tarball in the test case so that we're able
    to use a cached tarball from DL_DIR
    
    Signed-off-by: Joshua Lock <joshua.g.lock at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/sdk/cases/buildcpio.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/sdk/cases/buildcpio.py b/meta/lib/oeqa/sdk/cases/buildcpio.py
index 11d629a..333dc7c 100644
--- a/meta/lib/oeqa/sdk/cases/buildcpio.py
+++ b/meta/lib/oeqa/sdk/cases/buildcpio.py
@@ -10,7 +10,7 @@ class BuildCpioTest(OESDKTestCase):
         dl_dir = self.td.get('DL_DIR', None)
 
         self.project = SDKBuildProject(self.tc.sdk_dir + "/cpio/", self.tc.sdk_env,
-                        "https://ftp.gnu.org/gnu/cpio/cpio-2.12.tar.bz2",
+                        "https://ftp.gnu.org/gnu/cpio/cpio-2.12.tar.gz",
                         self.tc.sdk_dir, self.td['DATETIME'], dl_dir=dl_dir)
         self.project.download_archive()
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list