mirror of
https://git.yoctoproject.org/poky
synced 2026-02-22 17:39:39 +01:00
This is a GTK+3 application, so we don't need to ship GTK+ 2 in Sato just for the SDK test suite. [ YOCTO #9780 ] (From OE-Core rev: 53fcfe4348a2ca727844f2b0bd3fca2902cbdda0) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
894 B
Python
24 lines
894 B
Python
from oeqa.oetest import oeRuntimeTest, skipModule
|
|
from oeqa.utils.decorators import *
|
|
from oeqa.utils.targetbuild import TargetBuildProject
|
|
|
|
def setUpModule():
|
|
if not oeRuntimeTest.hasFeature("tools-sdk"):
|
|
skipModule("Image doesn't have tools-sdk in IMAGE_FEATURES")
|
|
|
|
class GalculatorTest(oeRuntimeTest):
|
|
@skipUnlessPassed("test_ssh")
|
|
def test_galculator(self):
|
|
try:
|
|
project = TargetBuildProject(oeRuntimeTest.tc.target, oeRuntimeTest.tc.d,
|
|
"http://galculator.mnim.org/downloads/galculator-2.1.4.tar.bz2")
|
|
project.download_archive()
|
|
|
|
self.assertEqual(project.run_configure(), 0,
|
|
msg="Running configure failed")
|
|
|
|
self.assertEqual(project.run_make(), 0,
|
|
msg="Running make failed")
|
|
finally:
|
|
project.clean()
|