diff options
| -rw-r--r-- | meta/lib/oeqa/sdk/cases/autotools.py (renamed from meta/lib/oeqa/sdk/cases/buildcpio.py) | 2 | ||||
| -rw-r--r-- | meta/lib/oeqa/sdk/cases/cmake.py (renamed from meta/lib/oeqa/sdk/cases/assimp.py) | 4 | ||||
| -rw-r--r-- | meta/lib/oeqa/sdk/cases/gtk3.py (renamed from meta/lib/oeqa/sdk/cases/buildgalculator.py) | 2 | ||||
| -rw-r--r-- | meta/lib/oeqa/sdk/cases/makefile.py (renamed from meta/lib/oeqa/sdk/cases/buildlzip.py) | 2 | ||||
| -rw-r--r-- | meta/lib/oeqa/sdk/cases/meson.py (renamed from meta/lib/oeqa/sdk/cases/buildepoxy.py) | 4 |
5 files changed, 7 insertions, 7 deletions
diff --git a/meta/lib/oeqa/sdk/cases/buildcpio.py b/meta/lib/oeqa/sdk/cases/autotools.py index 51003b19cd..a711353791 100644 --- a/meta/lib/oeqa/sdk/cases/buildcpio.py +++ b/meta/lib/oeqa/sdk/cases/autotools.py | |||
| @@ -13,7 +13,7 @@ from oeqa.sdk.case import OESDKTestCase | |||
| 13 | from oeqa.utils.subprocesstweak import errors_have_output | 13 | from oeqa.utils.subprocesstweak import errors_have_output |
| 14 | errors_have_output() | 14 | errors_have_output() |
| 15 | 15 | ||
| 16 | class BuildCpioTest(OESDKTestCase): | 16 | class AutotoolsTest(OESDKTestCase): |
| 17 | """ | 17 | """ |
| 18 | Check that autotools will cross-compile correctly. | 18 | Check that autotools will cross-compile correctly. |
| 19 | """ | 19 | """ |
diff --git a/meta/lib/oeqa/sdk/cases/assimp.py b/meta/lib/oeqa/sdk/cases/cmake.py index d990b1e97d..db7d826a38 100644 --- a/meta/lib/oeqa/sdk/cases/assimp.py +++ b/meta/lib/oeqa/sdk/cases/cmake.py | |||
| @@ -13,7 +13,7 @@ from oeqa.sdk.case import OESDKTestCase | |||
| 13 | from oeqa.utils.subprocesstweak import errors_have_output | 13 | from oeqa.utils.subprocesstweak import errors_have_output |
| 14 | errors_have_output() | 14 | errors_have_output() |
| 15 | 15 | ||
| 16 | class BuildAssimp(OESDKTestCase): | 16 | class CMakeTest(OESDKTestCase): |
| 17 | """ | 17 | """ |
| 18 | Test case to build a project using cmake. | 18 | Test case to build a project using cmake. |
| 19 | """ | 19 | """ |
| @@ -21,7 +21,7 @@ class BuildAssimp(OESDKTestCase): | |||
| 21 | def setUp(self): | 21 | def setUp(self): |
| 22 | if not (self.tc.hasHostPackage("nativesdk-cmake") or | 22 | if not (self.tc.hasHostPackage("nativesdk-cmake") or |
| 23 | self.tc.hasHostPackage("cmake-native")): | 23 | self.tc.hasHostPackage("cmake-native")): |
| 24 | raise unittest.SkipTest("Needs cmake") | 24 | raise unittest.SkipTest("CMakeTest: needs cmake") |
| 25 | 25 | ||
| 26 | def test_assimp(self): | 26 | def test_assimp(self): |
| 27 | with tempfile.TemporaryDirectory(prefix="assimp", dir=self.tc.sdk_dir) as testdir: | 27 | with tempfile.TemporaryDirectory(prefix="assimp", dir=self.tc.sdk_dir) as testdir: |
diff --git a/meta/lib/oeqa/sdk/cases/buildgalculator.py b/meta/lib/oeqa/sdk/cases/gtk3.py index 178f07472d..c329c4bb86 100644 --- a/meta/lib/oeqa/sdk/cases/buildgalculator.py +++ b/meta/lib/oeqa/sdk/cases/gtk3.py | |||
| @@ -13,7 +13,7 @@ from oeqa.sdk.case import OESDKTestCase | |||
| 13 | from oeqa.utils.subprocesstweak import errors_have_output | 13 | from oeqa.utils.subprocesstweak import errors_have_output |
| 14 | errors_have_output() | 14 | errors_have_output() |
| 15 | 15 | ||
| 16 | class GalculatorTest(OESDKTestCase): | 16 | class GTK3Test(OESDKTestCase): |
| 17 | """ | 17 | """ |
| 18 | Test that autotools and GTK+ 3 compiles correctly. | 18 | Test that autotools and GTK+ 3 compiles correctly. |
| 19 | """ | 19 | """ |
diff --git a/meta/lib/oeqa/sdk/cases/buildlzip.py b/meta/lib/oeqa/sdk/cases/makefile.py index b4b7d85b88..c0b40f1f72 100644 --- a/meta/lib/oeqa/sdk/cases/buildlzip.py +++ b/meta/lib/oeqa/sdk/cases/makefile.py | |||
| @@ -9,7 +9,7 @@ from oeqa.sdk.case import OESDKTestCase | |||
| 9 | from oeqa.utils.subprocesstweak import errors_have_output | 9 | from oeqa.utils.subprocesstweak import errors_have_output |
| 10 | errors_have_output() | 10 | errors_have_output() |
| 11 | 11 | ||
| 12 | class BuildLzipTest(OESDKTestCase): | 12 | class MakefileTest(OESDKTestCase): |
| 13 | """ | 13 | """ |
| 14 | Test that "plain" compilation works, using just $CC $CFLAGS etc. | 14 | Test that "plain" compilation works, using just $CC $CFLAGS etc. |
| 15 | """ | 15 | """ |
diff --git a/meta/lib/oeqa/sdk/cases/buildepoxy.py b/meta/lib/oeqa/sdk/cases/meson.py index 147ee3e0ee..be53df204a 100644 --- a/meta/lib/oeqa/sdk/cases/buildepoxy.py +++ b/meta/lib/oeqa/sdk/cases/meson.py | |||
| @@ -13,14 +13,14 @@ from oeqa.sdk.case import OESDKTestCase | |||
| 13 | from oeqa.utils.subprocesstweak import errors_have_output | 13 | from oeqa.utils.subprocesstweak import errors_have_output |
| 14 | errors_have_output() | 14 | errors_have_output() |
| 15 | 15 | ||
| 16 | class EpoxyTest(OESDKTestCase): | 16 | class MesonTest(OESDKTestCase): |
| 17 | """ | 17 | """ |
| 18 | Test that Meson builds correctly. | 18 | Test that Meson builds correctly. |
| 19 | """ | 19 | """ |
| 20 | def setUp(self): | 20 | def setUp(self): |
| 21 | if not (self.tc.hasHostPackage("nativesdk-meson") or | 21 | if not (self.tc.hasHostPackage("nativesdk-meson") or |
| 22 | self.tc.hasHostPackage("meson-native")): | 22 | self.tc.hasHostPackage("meson-native")): |
| 23 | raise unittest.SkipTest("EpoxyTest class: SDK doesn't contain Meson") | 23 | raise unittest.SkipTest("MesonTest: needs meson") |
| 24 | 24 | ||
| 25 | def test_epoxy(self): | 25 | def test_epoxy(self): |
| 26 | with tempfile.TemporaryDirectory(prefix="epoxy", dir=self.tc.sdk_dir) as testdir: | 26 | with tempfile.TemporaryDirectory(prefix="epoxy", dir=self.tc.sdk_dir) as testdir: |
