mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-06-28 09:16:22 -04:00
17 lines
597 B
Python
17 lines
597 B
Python
# Copyright 2022 Thales Silicon Security
|
|
#
|
|
# Licensed under the Solderpad Hardware Licence, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH SHL-2.0
|
|
# You may obtain a copy of the License at https://solderpad.org/licenses/
|
|
#
|
|
# Original Author: Yannick Casamatta (yannick.casamatta@thalesgroup.com)
|
|
|
|
import report_builder as rb
|
|
|
|
metric = rb.TableStatusMetric('')
|
|
metric.add_pass('Job completed without error. No metric extraction is configured')
|
|
|
|
report = rb.Report()
|
|
report.add_metric(metric)
|
|
report.dump()
|