[OE-core] [PATCH 1/1] assimp.py: fix AttributeError in tearDownClass

Chen Qi Qi.Chen at windriver.com
Fri Aug 17 09:17:14 UTC 2018


When running this test case, we will see the following error.

  AttributeError: type object 'BuildAssimp' has no attribute 'project'

assimp.py test case does not make use of SDKBuildProject, so remove
the import statement and the tearDownClass.

Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
---
 meta/lib/oeqa/sdk/cases/assimp.py | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/meta/lib/oeqa/sdk/cases/assimp.py b/meta/lib/oeqa/sdk/cases/assimp.py
index 7251bdf..26c1df0 100644
--- a/meta/lib/oeqa/sdk/cases/assimp.py
+++ b/meta/lib/oeqa/sdk/cases/assimp.py
@@ -1,7 +1,6 @@
 import os, subprocess, unittest
 import bb
 from oeqa.sdk.case import OESDKTestCase
-from oeqa.sdk.utils.sdkbuildproject import SDKBuildProject
 
 from oeqa.utils.subprocesstweak import errors_have_output
 errors_have_output()
@@ -62,7 +61,3 @@ class BuildAssimp(OESDKTestCase):
             self.assertEqual(machine, elf.machine())
             self.assertEqual(bits, elf.abiSize())
             self.assertEqual(endian, elf.isLittleEndian())
-
-    @classmethod
-    def tearDownClass(self):
-        self.project.clean()
-- 
1.9.1




More information about the Openembedded-core mailing list