mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
oeqa: Fix files handling on runtime tests.
Common files was move to oeqa/files from oeqa/runtime/files because the same files are used across Runtime,SDK,eSDK tests. (From OE-Core rev: f099302efe8f222c3e4ae3604429f5ede4fd8c67) Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
e5f05409d0
commit
ba1aec3407
@@ -87,6 +87,7 @@ def exportTests(d,tc):
|
|||||||
# - the contents of oeqa/utils and oeqa/runtime/files
|
# - the contents of oeqa/utils and oeqa/runtime/files
|
||||||
# - oeqa/oetest.py and oeqa/runexport.py (this will get copied to exportpath not exportpath/oeqa)
|
# - oeqa/oetest.py and oeqa/runexport.py (this will get copied to exportpath not exportpath/oeqa)
|
||||||
# - __init__.py files
|
# - __init__.py files
|
||||||
|
bb.utils.mkdirhier(os.path.join(exportpath, "oeqa/files"))
|
||||||
bb.utils.mkdirhier(os.path.join(exportpath, "oeqa/runtime/files"))
|
bb.utils.mkdirhier(os.path.join(exportpath, "oeqa/runtime/files"))
|
||||||
bb.utils.mkdirhier(os.path.join(exportpath, "oeqa/utils"))
|
bb.utils.mkdirhier(os.path.join(exportpath, "oeqa/utils"))
|
||||||
# copy test modules, this should cover tests in other layers too
|
# copy test modules, this should cover tests in other layers too
|
||||||
@@ -124,6 +125,10 @@ def exportTests(d,tc):
|
|||||||
for f in files:
|
for f in files:
|
||||||
if f.endswith(".py"):
|
if f.endswith(".py"):
|
||||||
shutil.copy2(os.path.join(root, f), os.path.join(exportpath, "oeqa/utils"))
|
shutil.copy2(os.path.join(root, f), os.path.join(exportpath, "oeqa/utils"))
|
||||||
|
# copy oeqa/files/*
|
||||||
|
for root, dirs, files in os.walk(os.path.join(oeqadir, "files")):
|
||||||
|
for f in files:
|
||||||
|
shutil.copy2(os.path.join(root, f), os.path.join(exportpath, "oeqa/files"))
|
||||||
# copy oeqa/runtime/files/*
|
# copy oeqa/runtime/files/*
|
||||||
for root, dirs, files in os.walk(os.path.join(oeqadir, "runtime/files")):
|
for root, dirs, files in os.walk(os.path.join(oeqadir, "runtime/files")):
|
||||||
for f in files:
|
for f in files:
|
||||||
|
|||||||
@@ -201,6 +201,7 @@ class TestContext(object):
|
|||||||
self.testsrequired = self._get_test_suites_required()
|
self.testsrequired = self._get_test_suites_required()
|
||||||
|
|
||||||
self.filesdir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "runtime/files")
|
self.filesdir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "runtime/files")
|
||||||
|
self.corefilesdir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "files")
|
||||||
self.imagefeatures = d.getVar("IMAGE_FEATURES").split()
|
self.imagefeatures = d.getVar("IMAGE_FEATURES").split()
|
||||||
self.distrofeatures = d.getVar("DISTRO_FEATURES").split()
|
self.distrofeatures = d.getVar("DISTRO_FEATURES").split()
|
||||||
|
|
||||||
|
|||||||
@@ -12,9 +12,9 @@ class GccCompileTest(oeRuntimeTest):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpClass(self):
|
def setUpClass(self):
|
||||||
oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.filesdir, "test.c"), "/tmp/test.c")
|
oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.corefilesdir, "test.c"), "/tmp/test.c")
|
||||||
oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.filesdir, "testmakefile"), "/tmp/testmakefile")
|
oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.filesdir, "testmakefile"), "/tmp/testmakefile")
|
||||||
oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.filesdir, "test.cpp"), "/tmp/test.cpp")
|
oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.corefilesdir, "test.cpp"), "/tmp/test.cpp")
|
||||||
|
|
||||||
@testcase(203)
|
@testcase(203)
|
||||||
def test_gcc_compile(self):
|
def test_gcc_compile(self):
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ class PerlTest(oeRuntimeTest):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpClass(self):
|
def setUpClass(self):
|
||||||
oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.filesdir, "test.pl"), "/tmp/test.pl")
|
oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.corefilesdir, "test.pl"), "/tmp/test.pl")
|
||||||
|
|
||||||
@testcase(1141)
|
@testcase(1141)
|
||||||
def test_perl_exists(self):
|
def test_perl_exists(self):
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ class PythonTest(oeRuntimeTest):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpClass(self):
|
def setUpClass(self):
|
||||||
oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.filesdir, "test.py"), "/tmp/test.py")
|
oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.corefilesdir, "test.py"), "/tmp/test.py")
|
||||||
|
|
||||||
@testcase(1145)
|
@testcase(1145)
|
||||||
def test_python_exists(self):
|
def test_python_exists(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user