summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdk
diff options
context:
space:
mode:
authorCorneliu Stoicescu <corneliux.stoicescu@intel.com>2014-08-09 13:59:09 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-18 08:55:54 +0100
commitabb7f5bbcccd6e1d22aaba2b0d293a43e9354407 (patch)
tree4cae8e9da059257184f1dd14464800c87f665c8d /meta/lib/oeqa/sdk
parentfec293be3a44b42c2a77f2242d171749a0d47881 (diff)
downloadpoky-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/oeqa/sdk')
-rw-r--r--meta/lib/oeqa/sdk/__init__.py3
-rw-r--r--meta/lib/oeqa/sdk/buildcvs.py25
-rw-r--r--meta/lib/oeqa/sdk/buildiptables.py26
-rw-r--r--meta/lib/oeqa/sdk/buildsudoku.py22
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
2from 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 @@
1from oeqa.oetest import oeSDKTest, skipModule
2from oeqa.utils.decorators import *
3from oeqa.utils.targetbuild import SDKBuildProject
4
5class 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 @@
1from oeqa.oetest import oeSDKTest
2from oeqa.utils.decorators import *
3from oeqa.utils.targetbuild import SDKBuildProject
4
5
6class 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 @@
1from oeqa.oetest import oeSDKTest, skipModule
2from oeqa.utils.decorators import *
3from oeqa.utils.targetbuild import SDKBuildProject
4
5class 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()