diff options
Diffstat (limited to 'meta-selftest/recipes-test')
-rw-r--r-- | meta-selftest/recipes-test/pseudo-pyc-test/pseudo-pyc-test.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta-selftest/recipes-test/pseudo-pyc-test/pseudo-pyc-test.bb b/meta-selftest/recipes-test/pseudo-pyc-test/pseudo-pyc-test.bb new file mode 100644 index 0000000000..12dc91a8f3 --- /dev/null +++ b/meta-selftest/recipes-test/pseudo-pyc-test/pseudo-pyc-test.bb | |||
@@ -0,0 +1,15 @@ | |||
1 | SUMMARY = "pseudo env test" | ||
2 | LICENSE = "MIT" | ||
3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
4 | |||
5 | INHIBIT_DEFAULT_DEPS = "1" | ||
6 | |||
7 | python do_compile() { | ||
8 | import pseudo_pyc_test1 | ||
9 | print(pseudo_pyc_test1.STRING) | ||
10 | } | ||
11 | |||
12 | python do_install() { | ||
13 | import pseudo_pyc_test2 | ||
14 | print(pseudo_pyc_test2.STRING) | ||
15 | } | ||