summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/liboe.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-08 16:56:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-09 16:31:55 +0100
commitc7592b01478def091b6787412390c61e7ce0a0cd (patch)
tree3c2f26480c6e16fae0ad65b032e3dc0fccfca71b /meta/lib/oeqa/selftest/cases/liboe.py
parentc0dc72bad92e2e4dc0aedb48b969709f821baf73 (diff)
downloadpoky-c7592b01478def091b6787412390c61e7ce0a0cd.tar.gz
oeqa: Drop OETestID
These IDs refer to testopia which we're no longer using. We would now use the test names to definitively reference tests and the IDs can be dropped, along with their supporting code. (From OE-Core rev: 8e2d0575e4e7036b5f60e632f377a8ab2b96ead8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/liboe.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/liboe.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/lib/oeqa/selftest/cases/liboe.py b/meta/lib/oeqa/selftest/cases/liboe.py
index e84609246a..01b2cab7aa 100644
--- a/meta/lib/oeqa/selftest/cases/liboe.py
+++ b/meta/lib/oeqa/selftest/cases/liboe.py
@@ -1,5 +1,4 @@
1from oeqa.selftest.case import OESelftestTestCase 1from oeqa.selftest.case import OESelftestTestCase
2from oeqa.core.decorator.oeid import OETestID
3from oeqa.utils.commands import get_bb_var, get_bb_vars, bitbake, runCmd 2from oeqa.utils.commands import get_bb_var, get_bb_vars, bitbake, runCmd
4import oe.path 3import oe.path
5import os 4import os
@@ -11,7 +10,6 @@ class LibOE(OESelftestTestCase):
11 super(LibOE, cls).setUpClass() 10 super(LibOE, cls).setUpClass()
12 cls.tmp_dir = get_bb_var('TMPDIR') 11 cls.tmp_dir = get_bb_var('TMPDIR')
13 12
14 @OETestID(1635)
15 def test_copy_tree_special(self): 13 def test_copy_tree_special(self):
16 """ 14 """
17 Summary: oe.path.copytree() should copy files with special character 15 Summary: oe.path.copytree() should copy files with special character
@@ -37,7 +35,6 @@ class LibOE(OESelftestTestCase):
37 35
38 oe.path.remove(testloc) 36 oe.path.remove(testloc)
39 37
40 @OETestID(1636)
41 def test_copy_tree_xattr(self): 38 def test_copy_tree_xattr(self):
42 """ 39 """
43 Summary: oe.path.copytree() should preserve xattr on copied files 40 Summary: oe.path.copytree() should preserve xattr on copied files
@@ -72,7 +69,6 @@ class LibOE(OESelftestTestCase):
72 69
73 oe.path.remove(testloc) 70 oe.path.remove(testloc)
74 71
75 @OETestID(1634)
76 def test_copy_hardlink_tree_count(self): 72 def test_copy_hardlink_tree_count(self):
77 """ 73 """
78 Summary: oe.path.copyhardlinktree() shouldn't miss out files 74 Summary: oe.path.copyhardlinktree() shouldn't miss out files