aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdk/buildgalculator.py
blob: 2629a5501a5136394f65f333ca3a74eeb4603414 (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
27
28
29
30
31
from oeqa.oetest import oeSDKTest, skipModule
from oeqa.utils.decorators import *
from oeqa.utils.targetbuild import SDKBuildProject

def setUpModule():
    if not (oeSDKTest.hasPackage("gtk+3") or oeSDKTest.hasPackage("libgtk-3.0")):
        skipModule("Image doesn't have gtk+3 in manifest")

class GalculatorTest(oeSDKTest):
    def test_galculator(self):
        try:
            project = SDKBuildProject(oeSDKTest.tc.sdktestdir + "/galculator/",
                                      oeSDKTest.tc.sdkenv, oeSDKTest.tc.d,
                                      "http://galculator.mnim.org/downloads/galculator-2.1.4.tar.bz2")

            project.download_archive()

            # regenerate configure to get support for --with-libtool-sysroot
            legacy_preconf=("libtoolize --automake;"
                            "aclocal -I ${OECORE_TARGET_SYSROOT}/usr/share/aclocal -I m4;"
                            "autoconf;"
                            "autoheader;"
                            "automake -a;")

            self.assertEqual(project.run_configure(extra_cmds=legacy_preconf),
                             0, msg="Running configure failed")

            self.assertEqual(project.run_make(), 0,
                            msg="Running make failed")
        finally:
            project.clean()