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/oeqa/sdk/buildiptables.py | |
| 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/oeqa/sdk/buildiptables.py')
| -rw-r--r-- | meta/lib/oeqa/sdk/buildiptables.py | 26 |
1 files changed, 26 insertions, 0 deletions
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() | ||
