mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
remove sukoku
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ad0cfdbf7d
commit
38d2c59ab8
@@ -1,28 +0,0 @@
|
|||||||
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 SudokuTest(oeRuntimeTest):
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def setUpClass(self):
|
|
||||||
self.project = TargetBuildProject(oeRuntimeTest.tc.target, oeRuntimeTest.tc.d,
|
|
||||||
"http://downloads.sourceforge.net/project/sudoku-savant/sudoku-savant/sudoku-savant-1.3/sudoku-savant-1.3.tar.bz2")
|
|
||||||
self.project.download_archive()
|
|
||||||
|
|
||||||
@testcase(207)
|
|
||||||
@skipUnlessPassed("test_ssh")
|
|
||||||
def test_sudoku(self):
|
|
||||||
self.assertEqual(self.project.run_configure(), 0,
|
|
||||||
msg="Running configure failed")
|
|
||||||
|
|
||||||
self.assertEqual(self.project.run_make(), 0,
|
|
||||||
msg="Running make failed")
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def tearDownClass(self):
|
|
||||||
self.project.clean()
|
|
||||||
Reference in New Issue
Block a user