diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-07-10 14:26:37 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-07-15 10:28:12 +0100 |
commit | 7484fb49a4fb2e84729ce11c4c8c0433a8365dc3 (patch) | |
tree | 0e481bb23c29983e597985445b01a3d296636012 /bitbake/lib/bb/tests/runqueue-tests/conf | |
parent | 39ef064da5998b1bf1d47d10a9622e9fe4107796 (diff) | |
download | poky-7484fb49a4fb2e84729ce11c4c8c0433a8365dc3.tar.gz |
bitbake: tests: Add initial scenario based test for runqueue
We need some tests for runqueue, its been something which has been hard to test
for a long time. Add some dummy metadata to allow this, mirroring the OE
structure in spirit.
(Bitbake rev: 37564d7440c5d7aa05ec537f3b79026b1c83bb68)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/tests/runqueue-tests/conf')
-rw-r--r-- | bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf b/bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf new file mode 100644 index 0000000000..8c7b754dab --- /dev/null +++ b/bitbake/lib/bb/tests/runqueue-tests/conf/bitbake.conf | |||
@@ -0,0 +1,11 @@ | |||
1 | CACHE = "${TOPDIR}/cache" | ||
2 | THISDIR = "${@os.path.dirname(d.getVar('FILE'))}" | ||
3 | COREBASE := "${@os.path.normpath(os.path.dirname(d.getVar('FILE')+'/../../'))}" | ||
4 | BBFILES = "${COREBASE}/recipes/*.bb" | ||
5 | PROVIDES = "${PN}" | ||
6 | PN = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[0]}" | ||
7 | PF = "${BB_CURRENT_MC}:${PN}" | ||
8 | export PATH | ||
9 | STAMP = "${TOPDIR}/stamps/${PN}" | ||
10 | T = "${TOPDIR}/workdir/${PN}/temp" | ||
11 | BB_NUMBER_THREADS = "4" | ||