diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-28 11:53:59 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-29 10:58:55 +0100 |
commit | 26997d1d21453447e952c32ada2a7faa1a849db7 (patch) | |
tree | 6f34767d56f90733a26f3e23eea715a334649e0b /meta/lib/oeqa/sdk/python.py | |
parent | 527b28c10955daf0387597020d69593ce24bcaa4 (diff) | |
download | poky-26997d1d21453447e952c32ada2a7faa1a849db7.tar.gz |
lib/oeqa: Add sdk tests for gcc/perl/python
Enhance testing of the generated SDK tarballs by adding tests for
gcc/perl/python based on the existing runtime tests.
(From OE-Core rev: 18160403427b2aab4207c939312fb0981c3f2d1b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/sdk/python.py')
-rw-r--r-- | meta/lib/oeqa/sdk/python.py | 32 |
1 files changed, 32 insertions, 0 deletions
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") | ||