mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
fec293be3a
commit
abb7f5bbcc
@@ -0,0 +1,3 @@
|
|||||||
|
# Enable other layers to have tests in the same named directory
|
||||||
|
from pkgutil import extend_path
|
||||||
|
__path__ = extend_path(__path__, __name__)
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
from oeqa.oetest import oeSDKTest, skipModule
|
||||||
|
from oeqa.utils.decorators import *
|
||||||
|
from oeqa.utils.targetbuild import SDKBuildProject
|
||||||
|
|
||||||
|
class BuildCvsTest(oeSDKTest):
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(self):
|
||||||
|
self.project = SDKBuildProject(oeSDKTest.tc.sdktestdir + "/cvs/", oeSDKTest.tc.sdkenv, oeSDKTest.tc.d,
|
||||||
|
"http://ftp.gnu.org/non-gnu/cvs/source/feature/1.12.13/cvs-1.12.13.tar.bz2")
|
||||||
|
self.project.download_archive()
|
||||||
|
|
||||||
|
def test_cvs(self):
|
||||||
|
self.assertEqual(self.project.run_configure(), 0,
|
||||||
|
msg="Running configure failed")
|
||||||
|
|
||||||
|
self.assertEqual(self.project.run_make(), 0,
|
||||||
|
msg="Running make failed")
|
||||||
|
|
||||||
|
self.assertEqual(self.project.run_install(), 0,
|
||||||
|
msg="Running make install failed")
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def tearDownClass(self):
|
||||||
|
self.project.clean()
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
from oeqa.oetest import oeSDKTest
|
||||||
|
from oeqa.utils.decorators import *
|
||||||
|
from oeqa.utils.targetbuild import SDKBuildProject
|
||||||
|
|
||||||
|
|
||||||
|
class BuildIptablesTest(oeSDKTest):
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(self):
|
||||||
|
self.project = SDKBuildProject(oeSDKTest.tc.sdktestdir + "/iptables/", oeSDKTest.tc.sdkenv, oeSDKTest.tc.d,
|
||||||
|
"http://netfilter.org/projects/iptables/files/iptables-1.4.13.tar.bz2")
|
||||||
|
self.project.download_archive()
|
||||||
|
|
||||||
|
def test_iptables(self):
|
||||||
|
self.assertEqual(self.project.run_configure(), 0,
|
||||||
|
msg="Running configure failed")
|
||||||
|
|
||||||
|
self.assertEqual(self.project.run_make(), 0,
|
||||||
|
msg="Running make failed")
|
||||||
|
|
||||||
|
self.assertEqual(self.project.run_install(), 0,
|
||||||
|
msg="Running make install failed")
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def tearDownClass(self):
|
||||||
|
self.project.clean()
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
from oeqa.oetest import oeSDKTest, skipModule
|
||||||
|
from oeqa.utils.decorators import *
|
||||||
|
from oeqa.utils.targetbuild import SDKBuildProject
|
||||||
|
|
||||||
|
class SudokuTest(oeSDKTest):
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(self):
|
||||||
|
self.project = SDKBuildProject(oeSDKTest.tc.sdktestdir + "/sudoku/", oeSDKTest.tc.sdkenv, oeSDKTest.tc.d,
|
||||||
|
"http://downloads.sourceforge.net/project/sudoku-savant/sudoku-savant/sudoku-savant-1.3/sudoku-savant-1.3.tar.bz2")
|
||||||
|
self.project.download_archive()
|
||||||
|
|
||||||
|
def test_sudoku(self):
|
||||||
|
self.assertEqual(self.project.run_configure(), 0,
|
||||||
|
msg="Running configure failed")
|
||||||
|
|
||||||
|
self.assertEqual(self.project.run_make(), 0,
|
||||||
|
msg="Running make failed")
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def tearDownClass(self):
|
||||||
|
self.project.clean()
|
||||||
Reference in New Issue
Block a user