From: Richard Purdie <richard.purdie@linuxfoundation.org>
To: Daniel Istrate <daniel.alexandrux.istrate@intel.com>,
openembedded-core@lists.openembedded.org
Subject: Re: [PATCH] oeqa/selftest/bbtests: Test bitbake --setscene-only option
Date: Tue, 16 Feb 2016 15:14:27 +0000 [thread overview]
Message-ID: <1455635667.28376.16.camel@linuxfoundation.org> (raw)
In-Reply-To: <1455635341-28822-1-git-send-email-daniel.alexandrux.istrate@intel.com>
On Tue, 2016-02-16 at 17:09 +0200, Daniel Istrate wrote:
> Bitbake option to restore from sstate only within a build
> (i.e. execute no real tasks, only setscene)
>
> fix for [YOCTO #8876]
>
> Signed-off-by: Daniel Istrate <daniel.alexandrux.istrate@intel.com>
> ---
> meta/lib/oeqa/selftest/bbtests.py | 14 ++++++++++++++
> 1 file changed, 14 insertions(+)
>
> diff --git a/meta/lib/oeqa/selftest/bbtests.py
> b/meta/lib/oeqa/selftest/bbtests.py
> index 42ae9d0..b581b2b 100644
> --- a/meta/lib/oeqa/selftest/bbtests.py
> +++ b/meta/lib/oeqa/selftest/bbtests.py
> @@ -232,3 +232,17 @@ SSTATE_DIR = \"${TOPDIR}/download-selftest\"
> self.assertEqual(result.status, 0, "Bitbake failed, exit
> code %s, output %s" % (result.status, result.output))
> self.assertFalse(os.path.isfile(os.path.join(self.builddir,
> 'tmp/deploy/licenses/readline/generic_GPLv3')))
> self.assertTrue(os.path.isfile(os.path.join(self.builddir,
> 'tmp/deploy/licenses/readline/generic_GPLv2')))
> +
> + @testcase(1422)
> + def test_setscene_only(self):
> + """ Bitbake option to restore from sstate only within a
> build (i.e. execute no real tasks, only setscene)"""
> + test_recipe = 'ed'
> +
> + bitbake(test_recipe)
> + bitbake('-c clean %s' % test_recipe)
> + ret = bitbake('--setscene-only %s' % test_recipe)
> +
> + tasks = re.findall(r'task\s+(do_\S+):', ret.output)
> +
> + for task in tasks:
> + self.assertIn('_setscene', task, 'A task different from
> _setscene ran: %s' % task)
If this fails, it would be helpful to share "tasks" in the output so we
can see which task was executed.
We've had problems with various tests where they show a failure but
without enough information to debug them.
Cheers,
Richard
prev parent reply other threads:[~2016-02-16 15:14 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-16 15:09 [PATCH] oeqa/selftest/bbtests: Test bitbake --setscene-only option Daniel Istrate
2016-02-16 15:14 ` Richard Purdie [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1455635667.28376.16.camel@linuxfoundation.org \
--to=richard.purdie@linuxfoundation.org \
--cc=daniel.alexandrux.istrate@intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox