Silvestrs Timofejevs | 7fa3342 | 2021-03-09 12:11:59 +0000 | [diff] [blame] | 1 | # Copyright lowRISC contributors. |
| 2 | # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| 3 | # SPDX-License-Identifier: Apache-2.0 |
| 4 | |
| 5 | # List of self-checking test applications, which return PASS or FAIL after |
| 6 | # completion. |
| 7 | # |
| 8 | # Each list entry is a dict with the following keys: |
| 9 | # |
| 10 | # name: |
| 11 | # Name of the test (required) |
Alphan Ulusoy | 04d9b3a | 2021-05-14 16:02:54 -0400 | [diff] [blame] | 12 | # signing_key: |
| 13 | # Name of the key used to sign the binary (required) |
Silvestrs Timofejevs | 7fa3342 | 2021-03-09 12:11:59 +0000 | [diff] [blame] | 14 | # verilator_extra_args: |
| 15 | # A list of additional command-line arguments passed to the Verilator |
| 16 | # simulation (optional). |
| 17 | # targets: |
| 18 | # List of targets for which the test is executed. The test will be executed |
| 19 | # on all targets if not given (optional). |
| 20 | TEST_SILICON_CREATOR_APPS_SELFCHECKING = [ |
| 21 | { |
Timothy Trippel | 0703f96 | 2021-09-02 21:08:20 +0000 | [diff] [blame] | 22 | "name": "uart_smoketest", |
Alphan Ulusoy | 04d9b3a | 2021-05-14 16:02:54 -0400 | [diff] [blame] | 23 | "signing_key": "fpga_key_1", |
Silvestrs Timofejevs | 7fa3342 | 2021-03-09 12:11:59 +0000 | [diff] [blame] | 24 | }, |
| 25 | ] |