diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2016-10-27 16:39:47 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-23 12:05:19 +0000 |
commit | b61326efb1bc66202831f9710716b5171a722039 (patch) | |
tree | 31e229ee225f0a816eb60a5fb721b021f8eab3e2 /meta/lib/oeqa/runtime_cases/buildcvs.py | |
parent | ba1aec3407e38f4dc4141e4d6300b3d538dc9dd3 (diff) | |
download | poky-b61326efb1bc66202831f9710716b5171a722039.tar.gz |
oeqa/runtime: Move to runtime_cases
The new oeqa core framework will modify the structure of the runtime
folder the new runtime folder will have python code inside to support
runtime test cases.
(From OE-Core rev: 637b712096e9d230e15b1a432a561e4118db34c8)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime_cases/buildcvs.py')
-rw-r--r-- | meta/lib/oeqa/runtime_cases/buildcvs.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime_cases/buildcvs.py b/meta/lib/oeqa/runtime_cases/buildcvs.py new file mode 100644 index 0000000000..a5ca3a5b37 --- /dev/null +++ b/meta/lib/oeqa/runtime_cases/buildcvs.py | |||
@@ -0,0 +1,32 @@ | |||
1 | from oeqa.oetest import oeRuntimeTest, skipModule | ||
2 | from oeqa.utils.decorators import * | ||
3 | from oeqa.runtime.utils.targetbuildproject import TargetBuildProject | ||
4 | |||
5 | def setUpModule(): | ||
6 | if not oeRuntimeTest.hasFeature("tools-sdk"): | ||
7 | skipModule("Image doesn't have tools-sdk in IMAGE_FEATURES") | ||
8 | |||
9 | class BuildCvsTest(oeRuntimeTest): | ||
10 | |||
11 | @classmethod | ||
12 | def setUpClass(self): | ||
13 | dl_dir = oeRuntimeTest.tc.d.getVar('DL_DIR', True) | ||
14 | self.project = TargetBuildProject(oeRuntimeTest.tc.target, | ||
15 | "http://ftp.gnu.org/non-gnu/cvs/source/feature/1.12.13/cvs-1.12.13.tar.bz2", | ||
16 | dl_dir=dl_dir) | ||
17 | |||
18 | @testcase(205) | ||
19 | @skipUnlessPassed("test_ssh") | ||
20 | def test_cvs(self): | ||
21 | self.assertEqual(self.project.run_configure(), 0, | ||
22 | msg="Running configure failed") | ||
23 | |||
24 | self.assertEqual(self.project.run_make(), 0, | ||
25 | msg="Running make failed") | ||
26 | |||
27 | self.assertEqual(self.project.run_install(), 0, | ||
28 | msg="Running make install failed") | ||
29 | |||
30 | @classmethod | ||
31 | def tearDownClass(self): | ||
32 | self.project.clean() | ||