* Re: [PATCH 2/2] scripts/ci_build.sh: Set avocado-framework version to 96.0
2022-07-06 12:54 ` Gylstorff Quirin
@ 2022-07-06 14:51 ` Gylstorff Quirin
0 siblings, 0 replies; 10+ messages in thread
From: Gylstorff Quirin @ 2022-07-06 14:51 UTC (permalink / raw)
To: isar-users
[-- Attachment #1: Type: text/plain, Size: 2124 bytes --]
On 7/6/22 14:54, Gylstorff Quirin wrote:
>
>
> On 7/6/22 13:46, Quirin Gylstorff wrote:
>> From: Quirin Gylstorff <quirin.gylstorff@siemens.com>
>>
>> With avocado-framework version 97.0 the following error occurs:
>> ```
>> Successfully installed avocado-framework-97.0
>> + avocado --show=app,test run /builds/debian/isar/testsuite/citest.py
>> -t fast,-repro,-startvm --test-runner=runner --disable-sysinfo -p
>> quiet=1 -p cross=1 -p time_to_wait=300
>> Suite creation for runner "runner" is not supported
>> ```
>>
> Reason: the legacy test runner was removed with
> https://github.com/avocado-framework/avocado/commit/c961522567539bdb3859524f1087e4c5c69c600a.
>
> Quirin
Also the new runner breaks the CI build.
Attached is the build log.
This is on next with the following changes:
```
modified scripts/ci_build.sh
@@ -21,7 +21,7 @@ if ! command -v avocado > /dev/null; then
rm -rf /tmp/avocado_venv
virtualenv --python python3 /tmp/avocado_venv
source /tmp/avocado_venv/bin/activate
- pip install avocado-framework
+ pip install avocado-framework==97.0
fi
# Get Avocado build tests path
@@ -143,5 +143,5 @@ export VIRTUAL_ENV="./"
set -x
avocado $VERBOSE run "$TESTSUITE_DIR/citest.py" \
- -t $TAGS --test-runner=runner --disable-sysinfo \
+ -t $TAGS --disable-sysinfo \
-p quiet=$QUIET -p cross=$CROSS_BUILD -p time_to_wait=$TIMEOUT
```
Quirin
>> Force for now version 96.0.
>>
>> Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
>> ---
>> scripts/ci_build.sh | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh
>> index 2513f1a0..b1ec6912 100755
>> --- a/scripts/ci_build.sh
>> +++ b/scripts/ci_build.sh
>> @@ -21,7 +21,7 @@ if ! command -v avocado > /dev/null; then
>> rm -rf /tmp/avocado_venv
>> virtualenv --python python3 /tmp/avocado_venv
>> source /tmp/avocado_venv/bin/activate
>> - pip install avocado-framework
>> + pip install avocado-framework==96.0
>> fi
>> # Get Avocado build tests path
>
> -
>
[-- Attachment #2: job.log --]
[-- Type: text/x-log, Size: 38863 bytes --]
2022-07-06 12:57:36,307 avocado.test INFO | Command line: /tmp/avocado_venv/bin/avocado --show=app,test run /builds/debian/isar/testsuite/citest.py -t fast,-repro,-startvm --disable-sysinfo -p quiet=1 -p cross=1 -p time_to_wait=300
2022-07-06 12:57:36,308 avocado.test INFO |
2022-07-06 12:57:36,308 avocado.test INFO | Avocado version: 97.0
2022-07-06 12:57:36,308 avocado.test INFO |
2022-07-06 12:57:36,308 avocado.test INFO | Avocado config:
2022-07-06 12:57:36,308 avocado.test INFO |
2022-07-06 12:57:36,309 avocado.test INFO | {'assets.fetch.ignore_errors': False,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.fetch.references': [],
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.fetch.timeout': 300,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.list.days': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.list.overall_limit': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.list.size_filter': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.purge.days': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.purge.overall_limit': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.purge.size_filter': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.register.name': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.register.sha1_hash': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.register.url': None,
2022-07-06 12:57:36,310 avocado.test INFO | 'config': None,
2022-07-06 12:57:36,310 avocado.test INFO | 'config.datadir': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'core.input_encoding': 'utf-8',
2022-07-06 12:57:36,310 avocado.test INFO | 'core.paginator': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'core.show': {'app', 'test'},
2022-07-06 12:57:36,310 avocado.test INFO | 'core.verbose': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'datadir.paths.base_dir': '/builds/debian/isar/build/',
2022-07-06 12:57:36,310 avocado.test INFO | 'datadir.paths.cache_dirs': ['/root/avocado/data/cache'],
2022-07-06 12:57:36,310 avocado.test INFO | 'datadir.paths.data_dir': '/builds/debian/isar/build/data',
2022-07-06 12:57:36,310 avocado.test INFO | 'datadir.paths.logs_dir': '/builds/debian/isar/build/job-results',
2022-07-06 12:57:36,310 avocado.test INFO | 'datadir.paths.test_dir': '/builds/debian/isar/build/tests',
2022-07-06 12:57:36,310 avocado.test INFO | 'diff.create_reports': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'diff.filter': ['cmdline', 'time', 'variants', 'results', 'config', 'sysinfo'],
2022-07-06 12:57:36,310 avocado.test INFO | 'diff.html': None,
2022-07-06 12:57:36,310 avocado.test INFO | 'diff.jobids': [],
2022-07-06 12:57:36,310 avocado.test INFO | 'diff.open_browser': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'diff.strip_id': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_arch': '',
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_create': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_name': '',
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_path': '',
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_release': '',
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_type': '',
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_version': '',
2022-07-06 12:57:36,311 avocado.test INFO | 'filter.by_tags.include_empty': False,
2022-07-06 12:57:36,311 avocado.test INFO | 'filter.by_tags.include_empty_key': False,
2022-07-06 12:57:36,311 avocado.test INFO | 'filter.by_tags.tags': ['fast,-repro,-startvm'],
2022-07-06 12:57:36,311 avocado.test INFO | 'human_ui.omit.statuses': [],
2022-07-06 12:57:36,311 avocado.test INFO | 'job.output.loglevel': 'DEBUG',
2022-07-06 12:57:36,311 avocado.test INFO | 'job.output.testlogs.logfiles': ['debug.log'],
2022-07-06 12:57:36,311 avocado.test INFO | 'job.output.testlogs.statuses': [],
2022-07-06 12:57:36,311 avocado.test INFO | 'job.output.testlogs.summary_statuses': ['FAIL', 'ERROR'],
2022-07-06 12:57:36,311 avocado.test INFO | 'job.replay.source_job_id': 'latest',
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.json.enabled': True,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.json.output': None,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.tap.enabled': True,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.tap.include_logs': False,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.tap.output': None,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.xunit.enabled': True,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.xunit.job_name': None,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.xunit.max_test_log_chars': 100000,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.xunit.output': None,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.store_logging_stream': ['avocado.core:DEBUG'],
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.timeout': 0,
2022-07-06 12:57:36,311 avocado.test INFO | 'jobs.get.output_files.destination': None,
2022-07-06 12:57:36,311 avocado.test INFO | 'jobs.get.output_files.job_id': None,
2022-07-06 12:57:36,311 avocado.test INFO | 'jobs.show.job_id': 'latest',
2022-07-06 12:57:36,311 avocado.test INFO | 'json.variants.load': None,
2022-07-06 12:57:36,312 avocado.test INFO | 'list.recipes.write_to_directory': None,
2022-07-06 12:57:36,312 avocado.test INFO | 'list.write_to_json_file': None,
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.max_parallel_tasks': 64,
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.shuffle': False,
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.spawner': 'process',
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.status_server_auto': True,
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.status_server_buffer_size': 33554432,
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.status_server_listen': '127.0.0.1:8888',
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.status_server_uri': '127.0.0.1:8888',
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.cli.cmd.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.cli.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.disable': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.init.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.job.prepost.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.jobscripts.post': '/etc/avocado/scripts/job/post.d/',
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.jobscripts.pre': '/etc/avocado/scripts/job/pre.d/',
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.jobscripts.warn_non_existing_dir': False,
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.jobscripts.warn_non_zero_status': True,
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.ordered_list': False,
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.resolver.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.result.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.result_events.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.runnable.runner.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.runner.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.skip_broken_plugin_notification': [],
2022-07-06 12:57:36,313 avocado.test INFO | 'plugins.spawner.order': [],
2022-07-06 12:57:36,313 avocado.test INFO | 'plugins.varianter.order': [],
2022-07-06 12:57:36,313 avocado.test INFO | 'resolver.references': ['/builds/debian/isar/testsuite/citest.py'],
2022-07-06 12:57:36,313 avocado.test INFO | 'run.dict_variants': [],
2022-07-06 12:57:36,313 avocado.test INFO | 'run.dict_variants.variant_id_keys': [],
2022-07-06 12:57:36,313 avocado.test INFO | 'run.dry_run.enabled': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.dry_run.no_cleanup': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.execution_order': 'variants-per-test',
2022-07-06 12:57:36,313 avocado.test INFO | 'run.failfast': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.ignore_missing_references': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.job_category': None,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.journal.enabled': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.keep_tmp': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.log_test_data_directories': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.results.archive': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.results_dir': None,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.test_parameters': [['quiet', '1'],
2022-07-06 12:57:36,313 avocado.test INFO | ['cross', '1'],
2022-07-06 12:57:36,313 avocado.test INFO | ['time_to_wait', '300']],
2022-07-06 12:57:36,313 avocado.test INFO | 'run.test_runner': 'nrunner',
2022-07-06 12:57:36,313 avocado.test INFO | 'run.unique_job_id': None,
2022-07-06 12:57:36,313 avocado.test INFO | 'runner.exectest.exitcodes.skip': [],
2022-07-06 12:57:36,313 avocado.test INFO | 'runner.identifier_format': '{uri}',
2022-07-06 12:57:36,313 avocado.test INFO | 'runner.output.color': 'auto',
2022-07-06 12:57:36,313 avocado.test INFO | 'runner.output.colored': True,
2022-07-06 12:57:36,314 avocado.test INFO | 'runner.output.utf8': True,
2022-07-06 12:57:36,314 avocado.test INFO | 'runner.timeout.after_interrupted': 60,
2022-07-06 12:57:36,314 avocado.test INFO | 'runner.timeout.process_alive': 60,
2022-07-06 12:57:36,314 avocado.test INFO | 'runner.timeout.process_died': 10,
2022-07-06 12:57:36,314 avocado.test INFO | 'simpletests.status.failure_fields': ['status', 'stdout', 'stderr'],
2022-07-06 12:57:36,314 avocado.test INFO | 'simpletests.status.skip_location': 'all',
2022-07-06 12:57:36,314 avocado.test INFO | 'simpletests.status.skip_regex': '^SKIP$',
2022-07-06 12:57:36,314 avocado.test INFO | 'simpletests.status.warn_location': 'all',
2022-07-06 12:57:36,314 avocado.test INFO | 'simpletests.status.warn_regex': '^WARN$',
2022-07-06 12:57:36,314 avocado.test INFO | 'spawner.podman.avocado_spawner_egg': None,
2022-07-06 12:57:36,314 avocado.test INFO | 'spawner.podman.bin': '/usr/bin/podman',
2022-07-06 12:57:36,314 avocado.test INFO | 'spawner.podman.image': 'debian:11',
2022-07-06 12:57:36,314 avocado.test INFO | 'subcommand': 'run',
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.commands_timeout': -1,
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.enabled': False,
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.installed_packages': False,
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.locale': 'C',
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.optimize': False,
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.profiler': False,
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.sysinfodir': None,
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collectibles.commands': '/tmp/avocado_venv/lib/python3.9/site-packages/avocado/etc/avocado/sysinfo/commands',
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collectibles.fail_commands': '/tmp/avocado_venv/lib/python3.9/site-packages/avocado/etc/avocado/sysinfo/fail_commands',
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collectibles.fail_files': '/tmp/avocado_venv/lib/python3.9/site-packages/avocado/etc/avocado/sysinfo/fail_files',
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collectibles.files': '/tmp/avocado_venv/lib/python3.9/site-packages/avocado/etc/avocado/sysinfo/files',
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collectibles.profilers': '/tmp/avocado_venv/lib/python3.9/site-packages/avocado/etc/avocado/sysinfo/profilers',
2022-07-06 12:57:36,315 avocado.test INFO | 'task.timeout.running': None,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.contents': False,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.debug': False,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.inherit': False,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.json_variants_dump': None,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.summary': 0,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.tree': False,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.variants': 1,
2022-07-06 12:57:36,315 avocado.test INFO | 'vmimage.get.arch': None,
2022-07-06 12:57:36,315 avocado.test INFO | 'vmimage.get.distro': None,
2022-07-06 12:57:36,315 avocado.test INFO | 'vmimage.get.version': None}
2022-07-06 12:57:36,315 avocado.test INFO |
2022-07-06 12:57:36,315 avocado.test INFO | Avocado Data Directories:
2022-07-06 12:57:36,315 avocado.test INFO |
2022-07-06 12:57:36,315 avocado.test INFO | base /builds/debian/isar/build/
2022-07-06 12:57:36,315 avocado.test INFO | tests ./tests
2022-07-06 12:57:36,315 avocado.test INFO | data /builds/debian/isar/build/data
2022-07-06 12:57:36,315 avocado.test INFO | logs /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77
2022-07-06 12:57:36,316 avocado.test INFO |
2022-07-06 12:57:36,316 avocado.test INFO | Temporary dir: /var/tmp/avocado_tmp_gq9z5_jf/avocado_job_q820iqch
2022-07-06 12:57:36,316 avocado.test INFO |
2022-07-06 12:57:36,316 avocado.test INFO | Job ID: f9d6d77a935a0f597cc7a9856182c25d3486e3a9
2022-07-06 12:57:36,316 avocado.test INFO |
2022-07-06 12:57:36,551 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,551 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,551 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,551 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,551 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,552 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,552 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,552 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,552 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,552 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,553 avocado.core.task.statemachine DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild": requested -> triaging
2022-07-06 12:57:36,553 avocado.core.task.statemachine DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,553 avocado.core.task.statemachine DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,559 avocado.core.task.statemachine DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross": requested -> triaging
2022-07-06 12:57:36,559 avocado.core.task.statemachine DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,559 avocado.core.task.statemachine DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,564 avocado.core.task.statemachine DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi": requested -> triaging
2022-07-06 12:57:36,564 avocado.core.task.statemachine DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,564 avocado.core.task.statemachine DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,568 avocado.core.task.statemachine DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu": requested -> triaging
2022-07-06 12:57:36,568 avocado.core.task.statemachine DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,568 avocado.core.task.statemachine DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,572 avocado.core.task.statemachine DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm": requested -> triaging
2022-07-06 12:57:36,572 avocado.core.task.statemachine DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,572 avocado.core.task.statemachine DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,576 avocado.core.task.statemachine DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk": requested -> triaging
2022-07-06 12:57:36,576 avocado.core.task.statemachine DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,576 avocado.core.task.statemachine DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,580 avocado.core.task.statemachine DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild": requested -> triaging
2022-07-06 12:57:36,580 avocado.core.task.statemachine DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,580 avocado.core.task.statemachine DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,585 avocado.core.task.statemachine DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross": requested -> triaging
2022-07-06 12:57:36,586 avocado.core.task.statemachine DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,586 avocado.core.task.statemachine DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,592 avocado.core.task.statemachine DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk": requested -> triaging
2022-07-06 12:57:36,592 avocado.core.task.statemachine DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,593 avocado.core.task.statemachine DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,598 avocado.core.task.statemachine DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate": requested -> triaging
2022-07-06 12:57:36,599 avocado.core.task.statemachine DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,599 avocado.core.task.statemachine DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,606 avocado.core.task.statemachine DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild": spawned successfully
2022-07-06 12:57:36,606 avocado.core.task.statemachine DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross": spawned successfully
2022-07-06 12:57:36,607 avocado.core.task.statemachine DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi": spawned successfully
2022-07-06 12:57:36,607 avocado.core.task.statemachine DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu": spawned successfully
2022-07-06 12:57:36,607 avocado.core.task.statemachine DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm": spawned successfully
2022-07-06 12:57:36,607 avocado.core.task.statemachine DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk": spawned successfully
2022-07-06 12:57:36,607 avocado.core.task.statemachine DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild": spawned successfully
2022-07-06 12:57:36,608 avocado.core.task.statemachine DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross": spawned successfully
2022-07-06 12:57:36,608 avocado.core.task.statemachine DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk": spawned successfully
2022-07-06 12:57:36,608 avocado.core.task.statemachine DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate": spawned successfully
2022-07-06 12:57:36,878 avocado.core.status.repo DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross" started message: "{'status': 'started', 'time': 27414865.26078971, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/02-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross', 'id': '02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross'}"
2022-07-06 12:57:36,878 avocado.core.status.repo DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild" started message: "{'status': 'started', 'time': 27414865.260983545, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/01-_builds_ebsy_debian_isar_testsuite_citest.py_CcacheTest.test_ccache_rebuild', 'id': '01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild'}"
2022-07-06 12:57:36,881 avocado.core.status.repo DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu" started message: "{'status': 'started', 'time': 27414865.26489857, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/04-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross_ubuntu', 'id': '04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu'}"
2022-07-06 12:57:36,887 avocado.core.status.repo DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm" started message: "{'status': 'started', 'time': 27414865.269975588, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/05-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross_bookworm', 'id': '05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm'}"
2022-07-06 12:57:36,888 avocado.core.status.repo DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi" started message: "{'status': 'started', 'time': 27414865.270435356, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/03-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross_rpi', 'id': '03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi'}"
2022-07-06 12:57:36,888 avocado.core.status.repo DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk" started message: "{'status': 'started', 'time': 27414865.270494, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/06-_builds_ebsy_debian_isar_testsuite_citest.py_SdkTest.test_sdk', 'id': '06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk'}"
2022-07-06 12:57:36,892 avocado.core.status.repo DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild" started message: "{'status': 'started', 'time': 27414865.275236577, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/07-_builds_ebsy_debian_isar_testsuite_citest.py_RebuildTest.test_rebuild', 'id': '07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild'}"
2022-07-06 12:57:36,897 avocado.core.status.repo DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross" started message: "{'status': 'started', 'time': 27414865.280718807, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/08-_builds_ebsy_debian_isar_testsuite_citest.py_ContainerImageTest.test_nocross', 'id': '08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross'}"
2022-07-06 12:57:36,905 avocado.core.status.repo DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk" started message: "{'status': 'started', 'time': 27414865.289300628, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/09-_builds_ebsy_debian_isar_testsuite_citest.py_ContainerSdkTest.test_container_sdk', 'id': '09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk'}"
2022-07-06 12:57:36,908 avocado.core.status.repo DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate" started message: "{'status': 'started', 'time': 27414865.292482257, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/10-_builds_ebsy_debian_isar_testsuite_citest.py_SstateTest.test_sstate', 'id': '10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate'}"
2022-07-06 12:57:36,911 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross: STARTED
2022-07-06 12:57:36,911 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild: STARTED
2022-07-06 12:57:36,912 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu: STARTED
2022-07-06 12:57:36,912 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm: STARTED
2022-07-06 12:57:36,912 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi: STARTED
2022-07-06 12:57:36,913 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk: STARTED
2022-07-06 12:57:36,913 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild: STARTED
2022-07-06 12:57:36,913 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross: STARTED
2022-07-06 12:57:36,913 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk: STARTED
2022-07-06 12:57:36,914 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate: STARTED
2022-07-06 13:02:02,888 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:02:03,243 avocado.core.status.repo DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi" finished message: "{'result': 'cancel', 'fail_reason': 'KFAIL', 'status': 'finished', 'time': 27415131.33224191}"
2022-07-06 13:02:03,277 avocado.core.task.statemachine DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi" finished
2022-07-06 13:02:03,285 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi: CANCEL
2022-07-06 13:02:03,285 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/03-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross_rpi
2022-07-06 13:03:02,947 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:03:02,947 cibuilder L0165 ERROR| NOTE: No reply from server in 30s
2022-07-06 13:03:02,948 cibuilder L0165 ERROR| NOTE: Retrying server connection (#8)...
2022-07-06 13:03:03,231 avocado.core.status.repo DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild" finished message: "{'result': 'fail', 'fail_reason': 'Bitbake failed', 'status': 'finished', 'time': 27415191.392744526}"
2022-07-06 13:03:03,261 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild: FAIL
2022-07-06 13:03:03,261 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/01-_builds_ebsy_debian_isar_testsuite_citest.py_CcacheTest.test_ccache_rebuild
2022-07-06 13:03:03,290 avocado.core.task.statemachine DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild" finished
2022-07-06 13:04:03,003 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:04:03,003 cibuilder L0165 ERROR| NOTE: No reply from server in 30s
2022-07-06 13:04:03,004 cibuilder L0165 ERROR| NOTE: Retrying server connection (#8)...
2022-07-06 13:04:03,004 cibuilder L0165 ERROR| ERROR: Unable to connect to bitbake server, or start one (server startup failures would be in bitbake-cookerdaemon.log).
2022-07-06 13:04:03,383 avocado.core.status.repo DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk" finished message: "{'result': 'fail', 'fail_reason': 'Bitbake failed', 'status': 'finished', 'time': 27415251.441971876}"
2022-07-06 13:04:03,419 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk: FAIL
2022-07-06 13:04:03,419 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/09-_builds_ebsy_debian_isar_testsuite_citest.py_ContainerSdkTest.test_container_sdk
2022-07-06 13:04:03,420 avocado.core.task.statemachine DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk" finished
2022-07-06 13:05:03,008 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:05:03,008 cibuilder L0165 ERROR| NOTE: No reply from server in 30s
2022-07-06 13:05:03,009 cibuilder L0165 ERROR| NOTE: Retrying server connection (#8)...
2022-07-06 13:05:03,009 cibuilder L0165 ERROR| ERROR: Unable to connect to bitbake server, or start one (server startup failures would be in bitbake-cookerdaemon.log).
2022-07-06 13:05:03,032 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:05:03,033 cibuilder L0165 ERROR| NOTE: No reply from server in 30s
2022-07-06 13:05:03,033 cibuilder L0165 ERROR| NOTE: Retrying server connection (#8)...
2022-07-06 13:05:03,048 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:05:03,049 cibuilder L0165 ERROR| NOTE: No reply from server in 30s
2022-07-06 13:05:03,049 cibuilder L0165 ERROR| NOTE: Retrying server connection (#8)...
2022-07-06 13:05:03,049 cibuilder L0165 ERROR| ERROR: Unable to connect to bitbake server, or start one (server startup failures would be in bitbake-cookerdaemon.log).
2022-07-06 13:05:03,056 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:05:03,057 cibuilder L0165 ERROR| NOTE: No reply from server in 30s
2022-07-06 13:05:03,057 cibuilder L0165 ERROR| NOTE: Retrying server connection (#8)...
2022-07-06 13:05:03,312 avocado.core.status.repo DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross" finished message: "{'result': 'fail', 'fail_reason': 'Bitbake failed', 'status': 'finished', 'time': 27415311.49313946}"
2022-07-06 13:05:03,317 avocado.core.status.repo DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk" finished message: "{'result': 'fail', 'fail_reason': 'Bitbake failed', 'status': 'finished', 'time': 27415311.45401031}"
2022-07-06 13:05:03,339 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross: FAIL
2022-07-06 13:05:03,339 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/02-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross
2022-07-06 13:05:03,340 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk: FAIL
2022-07-06 13:05:03,341 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/06-_builds_ebsy_debian_isar_testsuite_citest.py_SdkTest.test_sdk
2022-07-06 13:05:03,348 avocado.core.task.statemachine DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross" finished
2022-07-06 13:05:03,360 avocado.core.task.statemachine DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk" finished
2022-07-06 13:05:03,366 avocado.core.status.repo DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild" finished message: "{'result': 'error', 'fail_reason': "'LAYERDIR_core'", 'status': 'finished', 'time': 27415311.567326404}"
2022-07-06 13:05:03,393 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild: ERROR
2022-07-06 13:05:03,394 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/07-_builds_ebsy_debian_isar_testsuite_citest.py_RebuildTest.test_rebuild
2022-07-06 13:05:03,398 avocado.core.task.statemachine DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild" finished
2022-07-06 13:05:03,406 avocado.core.status.repo DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross" finished message: "{'result': 'fail', 'fail_reason': 'Bitbake failed', 'status': 'finished', 'time': 27415311.512698233}"
2022-07-06 13:05:03,438 avocado.core.status.repo DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu" finished message: "{'result': 'cancel', 'fail_reason': 'KFAIL', 'status': 'finished', 'time': 27415311.483954832}"
2022-07-06 13:05:03,442 avocado.core.task.statemachine DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross" finished
2022-07-06 13:05:03,446 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross: FAIL
2022-07-06 13:05:03,446 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/08-_builds_ebsy_debian_isar_testsuite_citest.py_ContainerImageTest.test_nocross
2022-07-06 13:05:03,447 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu: CANCEL
2022-07-06 13:05:03,448 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/04-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross_ubuntu
2022-07-06 13:05:03,485 avocado.core.task.statemachine DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu" finished
2022-07-06 13:23:58,652 avocado.core.status.repo DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate" finished message: "{'result': 'pass', 'status': 'finished', 'time': 27416446.997061707}"
2022-07-06 13:23:58,693 avocado.core.task.statemachine DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate" finished
2022-07-06 13:23:58,706 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate: PASS
2022-07-06 13:23:58,706 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/10-_builds_ebsy_debian_isar_testsuite_citest.py_SstateTest.test_sstate
2022-07-06 13:31:56,458 avocado.core.status.repo DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm" finished message: "{'result': 'pass', 'status': 'finished', 'time': 27416924.808192104}"
2022-07-06 13:31:56,483 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm: PASS
2022-07-06 13:31:56,484 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/05-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross_bookworm
2022-07-06 13:31:56,493 avocado.core.task.statemachine DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm" finished
2022-07-06 13:31:56,545 avocado.test INFO | Test results available in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77
^ permalink raw reply [flat|nested] 10+ messages in thread