diff options
author | Ross Burton <ross.burton@intel.com> | 2018-12-11 23:26:35 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-13 16:32:21 +0000 |
commit | 1d49a3a23ab3ec1a299ce3ce6ad0c8823da7b7a4 (patch) | |
tree | 2ca9b2bb7f75152c73cc2d0e3470941d82eb94d4 | |
parent | 01bee70c315790f89ae34616d436c4f714da4514 (diff) | |
download | poky-1d49a3a23ab3ec1a299ce3ce6ad0c8823da7b7a4.tar.gz |
oeqa/sdk: rewrite lzip test
Don't use the helper class as it gets in the way more than it helps, exercise
the out-of-tree paths, and verify the installed files match the expected
architecture.
(From OE-Core rev: 920ae8c6537c2469f21ab9439587fd094ecc40f6)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/sdk/cases/buildlzip.py | 61 |
1 files changed, 28 insertions, 33 deletions
diff --git a/meta/lib/oeqa/sdk/cases/buildlzip.py b/meta/lib/oeqa/sdk/cases/buildlzip.py index b57fbbece7..a7ca239fb4 100644 --- a/meta/lib/oeqa/sdk/cases/buildlzip.py +++ b/meta/lib/oeqa/sdk/cases/buildlzip.py | |||
@@ -1,39 +1,34 @@ | |||
1 | import unittest | 1 | import os, tempfile, subprocess, unittest |
2 | from oeqa.sdk.case import OESDKTestCase | 2 | from oeqa.sdk.case import OESDKTestCase |
3 | from oeqa.sdk.utils.sdkbuildproject import SDKBuildProject | ||
4 | |||
5 | from oeqa.utils.subprocesstweak import errors_have_output | 3 | from oeqa.utils.subprocesstweak import errors_have_output |
6 | errors_have_output() | 4 | errors_have_output() |
7 | 5 | ||
8 | class BuildLzipTest(OESDKTestCase): | 6 | class BuildLzipTest(OESDKTestCase): |
9 | td_vars = ['DATETIME'] | 7 | """ |
10 | 8 | Test that "plain" compilation works, using just $CC $CFLAGS etc. | |
11 | @classmethod | 9 | """ |
12 | def setUpClass(self): | ||
13 | dl_dir = self.td.get('DL_DIR', None) | ||
14 | |||
15 | self.project = SDKBuildProject(self.tc.sdk_dir + "/lzip/", self.tc.sdk_env, | ||
16 | "http://downloads.yoctoproject.org/mirror/sources/lzip-1.19.tar.gz", | ||
17 | self.tc.sdk_dir, self.td['DATETIME'], dl_dir=dl_dir) | ||
18 | self.project.download_archive() | ||
19 | |||
20 | def setUp(self): | ||
21 | machine = self.td.get("MACHINE") | ||
22 | |||
23 | if not (self.tc.hasHostPackage("packagegroup-cross-canadian-%s" % machine) or | ||
24 | self.tc.hasHostPackage("^gcc-", regex=True)): | ||
25 | raise unittest.SkipTest("SDK doesn't contain a cross-canadian toolchain") | ||
26 | |||
27 | def test_lzip(self): | 10 | def test_lzip(self): |
28 | self.assertEqual(self.project.run_configure(), 0, | 11 | with tempfile.TemporaryDirectory(prefix="lzip", dir=self.tc.sdk_dir) as testdir: |
29 | msg="Running configure failed") | 12 | dl_dir = self.td.get('DL_DIR', None) |
30 | 13 | tarball = self.fetch(testdir, dl_dir, "http://downloads.yoctoproject.org/mirror/sources/lzip-1.19.tar.gz") | |
31 | self.assertEqual(self.project.run_make(), 0, | 14 | |
32 | msg="Running make failed") | 15 | dirs = {} |
33 | 16 | dirs["source"] = os.path.join(testdir, "lzip-1.19") | |
34 | self.assertEqual(self.project.run_install(), 0, | 17 | dirs["build"] = os.path.join(testdir, "build") |
35 | msg="Running make install failed") | 18 | dirs["install"] = os.path.join(testdir, "install") |
36 | 19 | ||
37 | @classmethod | 20 | subprocess.check_output(["tar", "xf", tarball, "-C", testdir]) |
38 | def tearDownClass(self): | 21 | self.assertTrue(os.path.isdir(dirs["source"])) |
39 | self.project.clean() | 22 | os.makedirs(dirs["build"]) |
23 | |||
24 | cmd = """cd {build} && \ | ||
25 | {source}/configure --srcdir {source} \ | ||
26 | CXX="$CXX" \ | ||
27 | CPPFLAGS="$CPPFLAGS" \ | ||
28 | CXXFLAGS="$CXXFLAGS" \ | ||
29 | LDFLAGS="$LDFLAGS" \ | ||
30 | """ | ||
31 | self._run(cmd.format(**dirs)) | ||
32 | self._run("cd {build} && make -j".format(**dirs)) | ||
33 | self._run("cd {build} && make install DESTDIR={install}".format(**dirs)) | ||
34 | self.check_elf(os.path.join(dirs["install"], "usr", "local", "bin", "lzip")) | ||