diff options
Diffstat (limited to 'meta/lib/oeqa/sdk/cases/assimp.py')
-rw-r--r-- | meta/lib/oeqa/sdk/cases/assimp.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/oeqa/sdk/cases/assimp.py b/meta/lib/oeqa/sdk/cases/assimp.py index 21c9106881..595f383489 100644 --- a/meta/lib/oeqa/sdk/cases/assimp.py +++ b/meta/lib/oeqa/sdk/cases/assimp.py | |||
@@ -20,8 +20,7 @@ class BuildAssimp(OESDKTestCase): | |||
20 | def test_assimp(self): | 20 | def test_assimp(self): |
21 | import tempfile | 21 | import tempfile |
22 | with tempfile.TemporaryDirectory(prefix="assimp", dir=self.tc.sdk_dir) as testdir: | 22 | with tempfile.TemporaryDirectory(prefix="assimp", dir=self.tc.sdk_dir) as testdir: |
23 | dl_dir = self.td.get('DL_DIR', None) | 23 | tarball = self.fetch(testdir, self.td["DL_DIR"], "https://github.com/assimp/assimp/archive/v4.1.0.tar.gz") |
24 | tarball = self.fetch(testdir, dl_dir, "https://github.com/assimp/assimp/archive/v4.1.0.tar.gz") | ||
25 | subprocess.check_output(["tar", "xf", tarball, "-C", testdir]) | 24 | subprocess.check_output(["tar", "xf", tarball, "-C", testdir]) |
26 | 25 | ||
27 | sourcedir = os.path.join(testdir, "assimp-4.1.0") | 26 | sourcedir = os.path.join(testdir, "assimp-4.1.0") |