diff options
author | Corneliu Stoicescu <corneliux.stoicescu@intel.com> | 2014-08-09 13:59:09 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-18 08:55:54 +0100 |
commit | abb7f5bbcccd6e1d22aaba2b0d293a43e9354407 (patch) | |
tree | 4cae8e9da059257184f1dd14464800c87f665c8d /meta/lib | |
parent | fec293be3a44b42c2a77f2242d171749a0d47881 (diff) | |
download | poky-abb7f5bbcccd6e1d22aaba2b0d293a43e9354407.tar.gz |
oeqa/sdk/: add sdk tests for sudoku, iptables and cvs
Add test modules for sdk tests.
NOTE: Original patch made by: Richard Purdie <richard.purdie@linuxfoundation.org>
(From OE-Core rev: 1b18a33b1053902faaa5cb242d4c1c7d1fb6b064)
Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/sdk/__init__.py | 3 | ||||
-rw-r--r-- | meta/lib/oeqa/sdk/buildcvs.py | 25 | ||||
-rw-r--r-- | meta/lib/oeqa/sdk/buildiptables.py | 26 | ||||
-rw-r--r-- | meta/lib/oeqa/sdk/buildsudoku.py | 22 |
4 files changed, 76 insertions, 0 deletions
diff --git a/meta/lib/oeqa/sdk/__init__.py b/meta/lib/oeqa/sdk/__init__.py new file mode 100644 index 0000000000..4cf3fa76b6 --- /dev/null +++ b/meta/lib/oeqa/sdk/__init__.py | |||
@@ -0,0 +1,3 @@ | |||
1 | # Enable other layers to have tests in the same named directory | ||
2 | from pkgutil import extend_path | ||
3 | __path__ = extend_path(__path__, __name__) | ||
diff --git a/meta/lib/oeqa/sdk/buildcvs.py b/meta/lib/oeqa/sdk/buildcvs.py new file mode 100644 index 0000000000..c7146fa4af --- /dev/null +++ b/meta/lib/oeqa/sdk/buildcvs.py | |||
@@ -0,0 +1,25 @@ | |||
1 | from oeqa.oetest import oeSDKTest, skipModule | ||
2 | from oeqa.utils.decorators import * | ||
3 | from oeqa.utils.targetbuild import SDKBuildProject | ||
4 | |||
5 | class BuildCvsTest(oeSDKTest): | ||
6 | |||
7 | @classmethod | ||
8 | def setUpClass(self): | ||
9 | self.project = SDKBuildProject(oeSDKTest.tc.sdktestdir + "/cvs/", oeSDKTest.tc.sdkenv, oeSDKTest.tc.d, | ||
10 | "http://ftp.gnu.org/non-gnu/cvs/source/feature/1.12.13/cvs-1.12.13.tar.bz2") | ||
11 | self.project.download_archive() | ||
12 | |||
13 | def test_cvs(self): | ||
14 | self.assertEqual(self.project.run_configure(), 0, | ||
15 | msg="Running configure failed") | ||
16 | |||
17 | self.assertEqual(self.project.run_make(), 0, | ||
18 | msg="Running make failed") | ||
19 | |||
20 | self.assertEqual(self.project.run_install(), 0, | ||
21 | msg="Running make install failed") | ||
22 | |||
23 | @classmethod | ||
24 | def tearDownClass(self): | ||
25 | self.project.clean() | ||
diff --git a/meta/lib/oeqa/sdk/buildiptables.py b/meta/lib/oeqa/sdk/buildiptables.py new file mode 100644 index 0000000000..062e5316e7 --- /dev/null +++ b/meta/lib/oeqa/sdk/buildiptables.py | |||
@@ -0,0 +1,26 @@ | |||
1 | from oeqa.oetest import oeSDKTest | ||
2 | from oeqa.utils.decorators import * | ||
3 | from oeqa.utils.targetbuild import SDKBuildProject | ||
4 | |||
5 | |||
6 | class BuildIptablesTest(oeSDKTest): | ||
7 | |||
8 | @classmethod | ||
9 | def setUpClass(self): | ||
10 | self.project = SDKBuildProject(oeSDKTest.tc.sdktestdir + "/iptables/", oeSDKTest.tc.sdkenv, oeSDKTest.tc.d, | ||
11 | "http://netfilter.org/projects/iptables/files/iptables-1.4.13.tar.bz2") | ||
12 | self.project.download_archive() | ||
13 | |||
14 | def test_iptables(self): | ||
15 | self.assertEqual(self.project.run_configure(), 0, | ||
16 | msg="Running configure failed") | ||
17 | |||
18 | self.assertEqual(self.project.run_make(), 0, | ||
19 | msg="Running make failed") | ||
20 | |||
21 | self.assertEqual(self.project.run_install(), 0, | ||
22 | msg="Running make install failed") | ||
23 | |||
24 | @classmethod | ||
25 | def tearDownClass(self): | ||
26 | self.project.clean() | ||
diff --git a/meta/lib/oeqa/sdk/buildsudoku.py b/meta/lib/oeqa/sdk/buildsudoku.py new file mode 100644 index 0000000000..6a60c76be8 --- /dev/null +++ b/meta/lib/oeqa/sdk/buildsudoku.py | |||
@@ -0,0 +1,22 @@ | |||
1 | from oeqa.oetest import oeSDKTest, skipModule | ||
2 | from oeqa.utils.decorators import * | ||
3 | from oeqa.utils.targetbuild import SDKBuildProject | ||
4 | |||
5 | class SudokuTest(oeSDKTest): | ||
6 | |||
7 | @classmethod | ||
8 | def setUpClass(self): | ||
9 | self.project = SDKBuildProject(oeSDKTest.tc.sdktestdir + "/sudoku/", oeSDKTest.tc.sdkenv, oeSDKTest.tc.d, | ||
10 | "http://downloads.sourceforge.net/project/sudoku-savant/sudoku-savant/sudoku-savant-1.3/sudoku-savant-1.3.tar.bz2") | ||
11 | self.project.download_archive() | ||
12 | |||
13 | def test_sudoku(self): | ||
14 | self.assertEqual(self.project.run_configure(), 0, | ||
15 | msg="Running configure failed") | ||
16 | |||
17 | self.assertEqual(self.project.run_make(), 0, | ||
18 | msg="Running make failed") | ||
19 | |||
20 | @classmethod | ||
21 | def tearDownClass(self): | ||
22 | self.project.clean() | ||