diff options
author | Khem Raj <raj.khem@gmail.com> | 2020-02-04 21:41:19 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-08 13:20:02 +0000 |
commit | 504b206e377b7e34ad5703079cd047bd2df96895 (patch) | |
tree | 9173c836edb2bf5d1adcad7e422e70e55bfb7b69 /meta/lib/oeqa | |
parent | 6113de76c88206be1bab5a066b1b90f811e39de2 (diff) | |
download | poky-504b206e377b7e34ad5703079cd047bd2df96895.tar.gz |
oeqa: Use cpio 2.13 as testcase
cpio 2.12 was released in 2015 and might have used older autotools
which could result in errors like
https://bugzilla.yoctoproject.org/show_bug.cgi?id=13779
Bumping to 2.13 will help in matching the tool versions
A good change on top would be to run
aclocal -I .; autoheader; autoconf; automake --add-missing -c
before running configure step perhaps
[YOCTO #13779]
(From OE-Core rev: 84eb1dc4fe8a11cd2d05b703070a6fb6de05b873)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/buildcpio.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/sdk/cases/buildcpio.py | 4 | ||||
-rw-r--r-- | meta/lib/oeqa/selftest/cases/meta_ide.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oeqa/runtime/cases/buildcpio.py b/meta/lib/oeqa/runtime/cases/buildcpio.py index f4e871e421..4bd72dd37e 100644 --- a/meta/lib/oeqa/runtime/cases/buildcpio.py +++ b/meta/lib/oeqa/runtime/cases/buildcpio.py | |||
@@ -12,7 +12,7 @@ class BuildCpioTest(OERuntimeTestCase): | |||
12 | 12 | ||
13 | @classmethod | 13 | @classmethod |
14 | def setUpClass(cls): | 14 | def setUpClass(cls): |
15 | uri = 'https://downloads.yoctoproject.org/mirror/sources/cpio-2.12.tar.gz' | 15 | uri = 'https://downloads.yoctoproject.org/mirror/sources/cpio-2.13.tar.gz' |
16 | cls.project = TargetBuildProject(cls.tc.target, | 16 | cls.project = TargetBuildProject(cls.tc.target, |
17 | uri, | 17 | uri, |
18 | dl_dir = cls.tc.td['DL_DIR']) | 18 | dl_dir = cls.tc.td['DL_DIR']) |
diff --git a/meta/lib/oeqa/sdk/cases/buildcpio.py b/meta/lib/oeqa/sdk/cases/buildcpio.py index 0a5e68d5fd..b0beafb38f 100644 --- a/meta/lib/oeqa/sdk/cases/buildcpio.py +++ b/meta/lib/oeqa/sdk/cases/buildcpio.py | |||
@@ -17,10 +17,10 @@ class BuildCpioTest(OESDKTestCase): | |||
17 | """ | 17 | """ |
18 | def test_cpio(self): | 18 | def test_cpio(self): |
19 | with tempfile.TemporaryDirectory(prefix="cpio-", dir=self.tc.sdk_dir) as testdir: | 19 | with tempfile.TemporaryDirectory(prefix="cpio-", dir=self.tc.sdk_dir) as testdir: |
20 | tarball = self.fetch(testdir, self.td["DL_DIR"], "https://ftp.gnu.org/gnu/cpio/cpio-2.12.tar.gz") | 20 | tarball = self.fetch(testdir, self.td["DL_DIR"], "https://ftp.gnu.org/gnu/cpio/cpio-2.13.tar.gz") |
21 | 21 | ||
22 | dirs = {} | 22 | dirs = {} |
23 | dirs["source"] = os.path.join(testdir, "cpio-2.12") | 23 | dirs["source"] = os.path.join(testdir, "cpio-2.13") |
24 | dirs["build"] = os.path.join(testdir, "build") | 24 | dirs["build"] = os.path.join(testdir, "build") |
25 | dirs["install"] = os.path.join(testdir, "install") | 25 | dirs["install"] = os.path.join(testdir, "install") |
26 | 26 | ||
diff --git a/meta/lib/oeqa/selftest/cases/meta_ide.py b/meta/lib/oeqa/selftest/cases/meta_ide.py index 03901a2f32..809142559a 100644 --- a/meta/lib/oeqa/selftest/cases/meta_ide.py +++ b/meta/lib/oeqa/selftest/cases/meta_ide.py | |||
@@ -40,7 +40,7 @@ class MetaIDE(OESelftestTestCase): | |||
40 | def test_meta_ide_can_build_cpio_project(self): | 40 | def test_meta_ide_can_build_cpio_project(self): |
41 | dl_dir = self.td.get('DL_DIR', None) | 41 | dl_dir = self.td.get('DL_DIR', None) |
42 | self.project = SDKBuildProject(self.tmpdir_metaideQA + "/cpio/", self.environment_script_path, | 42 | self.project = SDKBuildProject(self.tmpdir_metaideQA + "/cpio/", self.environment_script_path, |
43 | "https://ftp.gnu.org/gnu/cpio/cpio-2.12.tar.gz", | 43 | "https://ftp.gnu.org/gnu/cpio/cpio-2.13.tar.gz", |
44 | self.tmpdir_metaideQA, self.td['DATETIME'], dl_dir=dl_dir) | 44 | self.tmpdir_metaideQA, self.td['DATETIME'], dl_dir=dl_dir) |
45 | self.project.download_archive() | 45 | self.project.download_archive() |
46 | self.assertEqual(self.project.run_configure(), 0, | 46 | self.assertEqual(self.project.run_configure(), 0, |