diff options
| -rw-r--r-- | meta/lib/oeqa/oetest.py | 10 | ||||
| -rw-r--r-- | meta/lib/oeqa/sdk/gcc.py | 36 | ||||
| -rw-r--r-- | meta/lib/oeqa/sdk/perl.py | 28 | ||||
| -rw-r--r-- | meta/lib/oeqa/sdk/python.py | 32 |
4 files changed, 106 insertions, 0 deletions
diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py index da9556a6da..22d76b35e1 100644 --- a/meta/lib/oeqa/oetest.py +++ b/meta/lib/oeqa/oetest.py | |||
| @@ -129,6 +129,16 @@ class oeSDKTest(oeTest): | |||
| 129 | self.sdktestdir = oeSDKTest.tc.sdktestdir | 129 | self.sdktestdir = oeSDKTest.tc.sdktestdir |
| 130 | super(oeSDKTest, self).__init__(methodName) | 130 | super(oeSDKTest, self).__init__(methodName) |
| 131 | 131 | ||
| 132 | @classmethod | ||
| 133 | def hasHostPackage(self, pkg): | ||
| 134 | |||
| 135 | if re.search(pkg, oeTest.tc.hostpkgmanifest): | ||
| 136 | return True | ||
| 137 | return False | ||
| 138 | |||
| 139 | def _run(self, cmd): | ||
| 140 | return subprocess.check_output(cmd, shell=True) | ||
| 141 | |||
| 132 | def getmodule(pos=2): | 142 | def getmodule(pos=2): |
| 133 | # stack returns a list of tuples containg frame information | 143 | # stack returns a list of tuples containg frame information |
| 134 | # First element of the list the is current frame, caller is 1 | 144 | # First element of the list the is current frame, caller is 1 |
diff --git a/meta/lib/oeqa/sdk/gcc.py b/meta/lib/oeqa/sdk/gcc.py new file mode 100644 index 0000000000..67994b9b5a --- /dev/null +++ b/meta/lib/oeqa/sdk/gcc.py | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | import unittest | ||
| 2 | import os | ||
| 3 | import shutil | ||
| 4 | from oeqa.oetest import oeSDKTest, skipModule | ||
| 5 | from oeqa.utils.decorators import * | ||
| 6 | |||
| 7 | def setUpModule(): | ||
| 8 | machine = oeSDKTest.tc.d.getVar("MACHINE", True) | ||
| 9 | if not oeSDKTest.hasHostPackage("packagegroup-cross-canadian-" + machine): | ||
| 10 | skipModule("SDK doesn't contain a cross-canadian toolchain") | ||
| 11 | |||
| 12 | |||
| 13 | class GccCompileTest(oeSDKTest): | ||
| 14 | |||
| 15 | @classmethod | ||
| 16 | def setUpClass(self): | ||
| 17 | for f in ['test.c', 'test.cpp', 'testmakefile']: | ||
| 18 | shutil.copyfile(os.path.join(self.tc.filesdir, f), self.tc.sdktestdir + f) | ||
| 19 | |||
| 20 | def test_gcc_compile(self): | ||
| 21 | self._run('$CC %s/test.c -o %s/test -lm' % (self.tc.sdktestdir, self.tc.sdktestdir)) | ||
| 22 | |||
| 23 | def test_gpp_compile(self): | ||
| 24 | self._run('$CXX %s/test.c -o %s/test -lm' % (self.tc.sdktestdir, self.tc.sdktestdir)) | ||
| 25 | |||
| 26 | def test_gpp2_compile(self): | ||
| 27 | self._run('$CXX %s/test.cpp -o %s/test -lm' % (self.tc.sdktestdir, self.tc.sdktestdir)) | ||
| 28 | |||
| 29 | def test_make(self): | ||
| 30 | self._run('cd %s; make -f testmakefile' % self.tc.sdktestdir) | ||
| 31 | |||
| 32 | @classmethod | ||
| 33 | def tearDownClass(self): | ||
| 34 | files = [self.tc.sdktestdir + f for f in ['test.c', 'test.cpp', 'test.o', 'test', 'testmakefile']] | ||
| 35 | for f in files: | ||
| 36 | bb.utils.remove(f) | ||
diff --git a/meta/lib/oeqa/sdk/perl.py b/meta/lib/oeqa/sdk/perl.py new file mode 100644 index 0000000000..45f422ef0b --- /dev/null +++ b/meta/lib/oeqa/sdk/perl.py | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | import unittest | ||
| 2 | import os | ||
| 3 | import shutil | ||
| 4 | from oeqa.oetest import oeSDKTest, skipModule | ||
| 5 | from oeqa.utils.decorators import * | ||
| 6 | |||
| 7 | def setUpModule(): | ||
| 8 | if not oeSDKTest.hasHostPackage("nativesdk-perl"): | ||
| 9 | skipModule("No perl package in the SDK") | ||
| 10 | |||
| 11 | |||
| 12 | class PerlTest(oeSDKTest): | ||
| 13 | |||
| 14 | @classmethod | ||
| 15 | def setUpClass(self): | ||
| 16 | for f in ['test.pl']: | ||
| 17 | shutil.copyfile(os.path.join(self.tc.filesdir, f), self.tc.sdktestdir + f) | ||
| 18 | self.testfile = self.tc.sdktestdir + "test.pl" | ||
| 19 | |||
| 20 | def test_perl_exists(self): | ||
| 21 | self._run('which perl') | ||
| 22 | |||
| 23 | def test_perl_works(self): | ||
| 24 | self._run('perl %s/test.pl' % self.tc.sdktestdir) | ||
| 25 | |||
| 26 | @classmethod | ||
| 27 | def tearDownClass(self): | ||
| 28 | bb.utils.remove("%s/test.pl" % self.tc.sdktestdir) | ||
diff --git a/meta/lib/oeqa/sdk/python.py b/meta/lib/oeqa/sdk/python.py new file mode 100644 index 0000000000..896fab4dfb --- /dev/null +++ b/meta/lib/oeqa/sdk/python.py | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | import unittest | ||
| 2 | import os | ||
| 3 | import shutil | ||
| 4 | from oeqa.oetest import oeSDKTest, skipModule | ||
| 5 | from oeqa.utils.decorators import * | ||
| 6 | |||
| 7 | def setUpModule(): | ||
| 8 | if not oeSDKTest.hasHostPackage("nativesdk-python"): | ||
| 9 | skipModule("No python package in the SDK") | ||
| 10 | |||
| 11 | |||
| 12 | class PythonTest(oeSDKTest): | ||
| 13 | |||
| 14 | @classmethod | ||
| 15 | def setUpClass(self): | ||
| 16 | for f in ['test.py']: | ||
| 17 | shutil.copyfile(os.path.join(self.tc.filesdir, f), self.tc.sdktestdir + f) | ||
| 18 | |||
| 19 | def test_python_exists(self): | ||
| 20 | self._run('which python') | ||
| 21 | |||
| 22 | def test_python_stdout(self): | ||
| 23 | output = self._run('python %s/test.py' % self.tc.sdktestdir) | ||
| 24 | self.assertEqual(output.strip(), "the value of a is 0.01", msg="Incorrect output: %s" % output) | ||
| 25 | |||
| 26 | def test_python_testfile(self): | ||
| 27 | self._run('ls /tmp/testfile.python') | ||
| 28 | |||
| 29 | @classmethod | ||
| 30 | def tearDownClass(self): | ||
| 31 | bb.utils.remove("%s/test.py" % self.tc.sdktestdir) | ||
| 32 | bb.utils.remove("/tmp/testfile.python") | ||
