summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdk/buildiptables.py
blob: f0cb8a428747136bee155847062ab7c349d638c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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://downloads.yoctoproject.org/mirror/sources/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()