summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/opkg.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/opkg.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/opkg.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/opkg.py b/meta/lib/oeqa/runtime/cases/opkg.py
index bb8b6d99d2..750706161b 100644
--- a/meta/lib/oeqa/runtime/cases/opkg.py
+++ b/meta/lib/oeqa/runtime/cases/opkg.py
@@ -5,7 +5,7 @@
5import os 5import os
6from oeqa.utils.httpserver import HTTPService 6from oeqa.utils.httpserver import HTTPService
7from oeqa.runtime.case import OERuntimeTestCase 7from oeqa.runtime.case import OERuntimeTestCase
8from oeqa.core.decorator.data import skipIfNotDataVar, skipIfNotFeature 8from oeqa.core.decorator.data import skipIfNotDataVar, skipIfNotFeature, skipIfFeature
9from oeqa.runtime.decorator.package import OEHasPackage 9from oeqa.runtime.decorator.package import OEHasPackage
10 10
11class OpkgTest(OERuntimeTestCase): 11class OpkgTest(OERuntimeTestCase):
@@ -45,6 +45,8 @@ class OpkgRepoTest(OpkgTest):
45 'Test requires package-management to be in IMAGE_FEATURES') 45 'Test requires package-management to be in IMAGE_FEATURES')
46 @skipIfNotDataVar('IMAGE_PKGTYPE', 'ipk', 46 @skipIfNotDataVar('IMAGE_PKGTYPE', 'ipk',
47 'IPK is not the primary package manager') 47 'IPK is not the primary package manager')
48 @skipIfFeature('read-only-rootfs',
49 'Test does not work with read-only-rootfs in IMAGE_FEATURES')
48 @OEHasPackage(['opkg']) 50 @OEHasPackage(['opkg'])
49 def test_opkg_install_from_repo(self): 51 def test_opkg_install_from_repo(self):
50 self.setup_source_config_for_package_install() 52 self.setup_source_config_for_package_install()