diff options
author | Ross Burton <ross.burton@intel.com> | 2016-07-01 10:51:07 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-20 10:28:44 +0100 |
commit | 38d2c59ab8ecf8e40ceca7be7a1fd714a59c473d (patch) | |
tree | f6e7b8db4ae2fb15004db445be5d4e2f4bbc77d8 /meta/lib/oeqa | |
parent | ad0cfdbf7d1597f3bfbb6ac6b5606c00984259eb (diff) | |
download | poky-38d2c59ab8ecf8e40ceca7be7a1fd714a59c473d.tar.gz |
remove sukoku
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/runtime/buildsudoku.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/meta/lib/oeqa/runtime/buildsudoku.py b/meta/lib/oeqa/runtime/buildsudoku.py deleted file mode 100644 index 802b060010..0000000000 --- a/meta/lib/oeqa/runtime/buildsudoku.py +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | from oeqa.oetest import oeRuntimeTest, skipModule | ||
2 | from oeqa.utils.decorators import * | ||
3 | from oeqa.utils.targetbuild import TargetBuildProject | ||
4 | |||
5 | def setUpModule(): | ||
6 | if not oeRuntimeTest.hasFeature("tools-sdk"): | ||
7 | skipModule("Image doesn't have tools-sdk in IMAGE_FEATURES") | ||
8 | |||
9 | class SudokuTest(oeRuntimeTest): | ||
10 | |||
11 | @classmethod | ||
12 | def setUpClass(self): | ||
13 | self.project = TargetBuildProject(oeRuntimeTest.tc.target, oeRuntimeTest.tc.d, | ||
14 | "http://downloads.sourceforge.net/project/sudoku-savant/sudoku-savant/sudoku-savant-1.3/sudoku-savant-1.3.tar.bz2") | ||
15 | self.project.download_archive() | ||
16 | |||
17 | @testcase(207) | ||
18 | @skipUnlessPassed("test_ssh") | ||
19 | def test_sudoku(self): | ||
20 | self.assertEqual(self.project.run_configure(), 0, | ||
21 | msg="Running configure failed") | ||
22 | |||
23 | self.assertEqual(self.project.run_make(), 0, | ||
24 | msg="Running make failed") | ||
25 | |||
26 | @classmethod | ||
27 | def tearDownClass(self): | ||
28 | self.project.clean() | ||