mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Where there isn't a copyright statement, add one to make it explicit. Also add license identifiers as MIT if there isn't one. (From OE-Core rev: bb731d1f3d2a1d50ec0aed864dbca54cf795b040) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
993 B
Python
30 lines
993 B
Python
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
import glob
|
|
import os
|
|
import shutil
|
|
from oeqa.utils.commands import bitbake, get_test_layer
|
|
from oeqa.selftest.case import OESelftestTestCase
|
|
|
|
class Pseudo(OESelftestTestCase):
|
|
|
|
def test_pseudo_pyc_creation(self):
|
|
self.write_config("")
|
|
|
|
metaselftestpath = get_test_layer()
|
|
pycache_path = os.path.join(metaselftestpath, 'lib/__pycache__')
|
|
if os.path.exists(pycache_path):
|
|
shutil.rmtree(pycache_path)
|
|
|
|
bitbake('pseudo-pyc-test -c install')
|
|
|
|
test1_pyc_present = len(glob.glob(os.path.join(pycache_path, 'pseudo_pyc_test1.*.pyc')))
|
|
self.assertTrue(test1_pyc_present, 'test1 pyc file missing, should be created outside of pseudo context.')
|
|
|
|
test2_pyc_present = len(glob.glob(os.path.join(pycache_path, 'pseudo_pyc_test2.*.pyc')))
|
|
self.assertFalse(test2_pyc_present, 'test2 pyc file present, should not be created in pseudo context.')
|