summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime_cases/buildgalculator.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime_cases/buildgalculator.py')
-rw-r--r--meta/lib/oeqa/runtime_cases/buildgalculator.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/meta/lib/oeqa/runtime_cases/buildgalculator.py b/meta/lib/oeqa/runtime_cases/buildgalculator.py
deleted file mode 100644
index 20f0a79367..0000000000
--- a/meta/lib/oeqa/runtime_cases/buildgalculator.py
+++ /dev/null
@@ -1,26 +0,0 @@
1from oeqa.oetest import oeRuntimeTest, skipModule
2from oeqa.utils.decorators import *
3from oeqa.runtime.utils.targetbuildproject import TargetBuildProject
4
5def setUpModule():
6 if not oeRuntimeTest.hasFeature("tools-sdk"):
7 skipModule("Image doesn't have tools-sdk in IMAGE_FEATURES")
8
9class GalculatorTest(oeRuntimeTest):
10 @testcase(1526)
11 @skipUnlessPassed("test_ssh")
12 def test_galculator(self):
13 dl_dir = oeRuntimeTest.tc.d.getVar('DL_DIR', True)
14 try:
15 project = TargetBuildProject(oeRuntimeTest.tc.target,
16 "http://galculator.mnim.org/downloads/galculator-2.1.4.tar.bz2",
17 dl_dir=dl_dir)
18 project.download_archive()
19
20 self.assertEqual(project.run_configure(), 0,
21 msg="Running configure failed")
22
23 self.assertEqual(project.run_make(), 0,
24 msg="Running make failed")
25 finally:
26 project.clean()