Re: [OE-core] [PATCH] selftest: do not perform a full build in test_continue

2017-02-02 Thread Alexander Kanavin
On 02/02/2017 03:47 PM, Burton, Ross wrote: runCmd('bitbake -c cleanall man xcursor-transparent-theme') -result = runCmd('bitbake man xcursor-transparent-theme -k', ignore_status=True) +result = runCmd('bitbake -c unpack -k man xcursor-transparent-the

Re: [OE-core] [PATCH] selftest: do not perform a full build in test_continue

2017-02-02 Thread Burton, Ross
On 2 February 2017 at 13:26, Alexander Kanavin < alexander.kana...@linux.intel.com> wrote: > runCmd('bitbake -c cleanall man xcursor-transparent-theme') > -result = runCmd('bitbake man xcursor-transparent-theme -k', > ignore_status=True) > +result = runCmd('bitbake -c unpa

[OE-core] [PATCH] selftest: do not perform a full build in test_continue

2017-02-02 Thread Alexander Kanavin
This was fetching and building the toolchain and everything else against empty download dir and sstate cache, and so was enormously slow. The test does not need that, it only checks that one fetch task fails and another succeeds when using bitbake's -k option. Signed-off-by: Alexander Kanavin ---