diff options
author | Mihai Prica <mihai.prica@intel.com> | 2013-08-19 15:26:34 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-26 11:47:21 +0100 |
commit | d7077bc8e543568da710b35170b8f3425359c0c9 (patch) | |
tree | 7677d24657f9576d3e5af493647a1297fdd39d4b /meta/lib/oeqa/runtime | |
parent | c70bf6531c7aa0c2d1124ab4cffa91d16cc0109c (diff) | |
download | poky-d7077bc8e543568da710b35170b8f3425359c0c9.tar.gz |
lib/oeqa/runtime: add iptables, cvs and sudoku projects build tests on target
Downloads iptables/cvs/sudoku-savant sources and builds them on target.
(From OE-Core rev: df4568205c3a7e0b20c6299e29f96bd30560146b)
Signed-off-by: Mihai Prica <mihai.prica@intel.com>
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r-- | meta/lib/oeqa/runtime/buildcvs.py | 32 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/buildiptables.py | 32 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/buildsudoku.py | 29 |
3 files changed, 93 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/buildcvs.py b/meta/lib/oeqa/runtime/buildcvs.py new file mode 100644 index 0000000000..f024dfa99a --- /dev/null +++ b/meta/lib/oeqa/runtime/buildcvs.py | |||
@@ -0,0 +1,32 @@ | |||
1 | from oeqa.oetest import oeRuntimeTest | ||
2 | from oeqa.utils.decorators import * | ||
3 | from oeqa.utils.targetbuild 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 | self.restartTarget("-m 512") | ||
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 | self.project.download_archive() | ||
17 | |||
18 | @skipUnlessPassed("test_ssh") | ||
19 | def test_cvs(self): | ||
20 | self.assertEqual(self.project.run_configure(), 0, | ||
21 | msg="Running configure failed") | ||
22 | |||
23 | self.assertEqual(self.project.run_make(), 0, | ||
24 | msg="Running make failed") | ||
25 | |||
26 | self.assertEqual(self.project.run_install(), 0, | ||
27 | msg="Running make install failed") | ||
28 | |||
29 | @classmethod | ||
30 | def tearDownClass(self): | ||
31 | self.project.clean() | ||
32 | self.restartTarget() | ||
diff --git a/meta/lib/oeqa/runtime/buildiptables.py b/meta/lib/oeqa/runtime/buildiptables.py new file mode 100644 index 0000000000..88ece3bd8a --- /dev/null +++ b/meta/lib/oeqa/runtime/buildiptables.py | |||
@@ -0,0 +1,32 @@ | |||
1 | from oeqa.oetest import oeRuntimeTest | ||
2 | from oeqa.utils.decorators import * | ||
3 | from oeqa.utils.targetbuild 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 BuildIptablesTest(oeRuntimeTest): | ||
10 | |||
11 | @classmethod | ||
12 | def setUpClass(self): | ||
13 | self.restartTarget("-m 512") | ||
14 | self.project = TargetBuildProject(oeRuntimeTest.tc.target, | ||
15 | "http://netfilter.org/projects/iptables/files/iptables-1.4.13.tar.bz2") | ||
16 | self.project.download_archive() | ||
17 | |||
18 | @skipUnlessPassed("test_ssh") | ||
19 | def test_iptables(self): | ||
20 | self.assertEqual(self.project.run_configure(), 0, | ||
21 | msg="Running configure failed") | ||
22 | |||
23 | self.assertEqual(self.project.run_make(), 0, | ||
24 | msg="Running make failed") | ||
25 | |||
26 | self.assertEqual(self.project.run_install(), 0, | ||
27 | msg="Running make install failed") | ||
28 | |||
29 | @classmethod | ||
30 | def tearDownClass(self): | ||
31 | self.project.clean() | ||
32 | self.restartTarget() | ||
diff --git a/meta/lib/oeqa/runtime/buildsudoku.py b/meta/lib/oeqa/runtime/buildsudoku.py new file mode 100644 index 0000000000..0a7306ddc7 --- /dev/null +++ b/meta/lib/oeqa/runtime/buildsudoku.py | |||
@@ -0,0 +1,29 @@ | |||
1 | from oeqa.oetest import oeRuntimeTest | ||
2 | from oeqa.utils.decorators import * | ||
3 | from oeqa.utils.targetbuild 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 SudokuTest(oeRuntimeTest): | ||
10 | |||
11 | @classmethod | ||
12 | def setUpClass(self): | ||
13 | self.restartTarget("-m 512") | ||
14 | self.project = TargetBuildProject(oeRuntimeTest.tc.target, | ||
15 | "http://downloads.sourceforge.net/project/sudoku-savant/sudoku-savant/sudoku-savant-1.3/sudoku-savant-1.3.tar.bz2") | ||
16 | self.project.download_archive() | ||
17 | |||
18 | @skipUnlessPassed("test_ssh") | ||
19 | def test_sudoku(self): | ||
20 | self.assertEqual(self.project.run_configure(), 0, | ||
21 | msg="Running configure failed") | ||
22 | |||
23 | self.assertEqual(self.project.run_make(), 0, | ||
24 | msg="Running make failed") | ||
25 | |||
26 | @classmethod | ||
27 | def tearDownClass(self): | ||
28 | self.project.clean() | ||
29 | self.restartTarget() | ||