diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/buildiptables.py')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/buildiptables.py | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/meta/lib/oeqa/runtime/cases/buildiptables.py b/meta/lib/oeqa/runtime/cases/buildiptables.py index bae80392d9..002b16c483 100644 --- a/meta/lib/oeqa/runtime/cases/buildiptables.py +++ b/meta/lib/oeqa/runtime/cases/buildiptables.py | |||
@@ -25,14 +25,9 @@ class BuildIptablesTest(OERuntimeTestCase): | |||
25 | 'Test requires tools-sdk to be in IMAGE_FEATURES') | 25 | 'Test requires tools-sdk to be in IMAGE_FEATURES') |
26 | @OETestDepends(['ssh.SSHTest.test_ssh']) | 26 | @OETestDepends(['ssh.SSHTest.test_ssh']) |
27 | def test_iptables(self): | 27 | def test_iptables(self): |
28 | self.assertEqual(self.project.run_configure(), 0, | 28 | self.project.run_configure() |
29 | msg="Running configure failed") | 29 | self.project.run_make() |
30 | 30 | self.project.run_install() | |
31 | self.assertEqual(self.project.run_make(), 0, | ||
32 | msg="Running make failed") | ||
33 | |||
34 | self.assertEqual(self.project.run_install(), 0, | ||
35 | msg="Running make install failed") | ||
36 | 31 | ||
37 | @classmethod | 32 | @classmethod |
38 | def tearDownClass(self): | 33 | def tearDownClass(self): |