From: Anton Mikanovich <amikan@ilbers.de>
To: Jan Kiszka <jan.kiszka@siemens.com>,
isar-users@googlegroups.com, "Schmidt,
Adriaan" <adriaan.schmidt@siemens.com>
Subject: Re: [PATCH] CI: Add sstate-cache testcase
Date: Thu, 28 Oct 2021 20:22:58 +0300 [thread overview]
Message-ID: <1822c3ac-88d1-32cc-8886-c83d4746fe3a@ilbers.de> (raw)
In-Reply-To: <f8f28546-cf20-0591-41df-8d32b59db0e4@siemens.com>
28.10.2021 18:34, Jan Kiszka wrote:
> On 28.10.21 17:20, Anton Mikanovich wrote:
>> Test rebuild time improve after cleanup to be sure sstate-cache works.
>>
>> Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
>> ---
>> testsuite/build_test/build_test.py | 40 ++++++++++++++++++++++++++++--
>> 1 file changed, 38 insertions(+), 2 deletions(-)
>>
>> diff --git a/testsuite/build_test/build_test.py b/testsuite/build_test/build_test.py
>> index d39c10c0..244f6fc0 100644
>> --- a/testsuite/build_test/build_test.py
>> +++ b/testsuite/build_test/build_test.py
>> @@ -1,9 +1,9 @@
>> #!/usr/bin/env python3
>>
>> -import os
>> +import os, time
>>
>> from avocado import skipUnless
>> -from avocado.utils import path
>> +from avocado.utils import path, process
>> from cibase import CIBaseTest
>>
>> UMOCI_AVAILABLE = True
>> @@ -206,3 +206,39 @@ class ContainerSdkTest(CIBaseTest):
>> targets = ['mc:container-amd64-stretch:isar-image-base']
>>
>> self.perform_container_test(targets, 'do_populate_sdk')
>> +
>> +class SstateTest(CIBaseTest):
>> +
>> + """
>> + Test rebuild speed improve with sstate-cache
>> +
>> + :avocado: tags=sstate
>> + """
>> + def test_sstate_rebuild(self):
>> + speedup_k = 2.0
>> +
>> + targets = [
>> + 'mc:qemuamd64-bullseye:isar-image-base'
>> + ]
>> +
>> + # Cleanup everything before build
>> + build_dir = self.params.get('build_dir',
>> + default=os.path.dirname(__file__) + '/../../build')
>> + process.run('rm -rf ' + build_dir + '/sstate-cache', sudo=True)
>> + self.deletetmp(build_dir)
>> +
>> + start = time.time()
>> + self.perform_build_test(targets, 1, None)
>> + first_time = time.time() - start
>> + self.log.info('Non-cached build:' + str(round(first_time, 2)))
>> +
>> + # Cleanup everything but cache files
>> + self.deletetmp(build_dir)
>> +
>> + start = time.time()
>> + self.perform_build_test(targets, 1, None)
>> + second_time = time.time() - start
>> + self.log.info('Cached build:' + str(round(second_time, 2)))
>> +
>> + if first_time / second_time < speedup_k:
>> + self.fail('No speedup after rebuild with sstate-cache')
>>
> Is there no better way than measuring time to test if sstate was in
> place? Maybe some hit/miss statistics?
>
> Jan
>
I've tried to find some Avocado API to access final testcase statistics
from within other testcase but didn't find so far.
Any advice is welcome.
--
Anton Mikanovich
Promwad Ltd.
External service provider of ilbers GmbH
Maria-Merian-Str. 8
85521 Ottobrunn, Germany
+49 (89) 122 67 24-0
Commercial register Munich, HRB 214197
General Manager: Baurzhan Ismagulov
next prev parent reply other threads:[~2021-10-28 17:23 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-28 15:20 Anton Mikanovich
2021-10-28 15:34 ` Jan Kiszka
2021-10-28 17:22 ` Anton Mikanovich [this message]
2021-10-28 18:21 ` Henning Schild
2021-11-02 5:57 ` Schmidt, Adriaan
2021-11-02 7:55 ` Jan Kiszka
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=1822c3ac-88d1-32cc-8886-c83d4746fe3a@ilbers.de \
--to=amikan@ilbers.de \
--cc=adriaan.schmidt@siemens.com \
--cc=isar-users@googlegroups.com \
--cc=jan.kiszka@siemens.com \
/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