blob: 3b09b2c06069806c5b5079904981656cd63a1e54 [file] [log] [blame]
Silvestrs Timofejevs7fa33422021-03-09 12:11:59 +00001# 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 Ulusoy04d9b3a2021-05-14 16:02:54 -040012# signing_key:
13# Name of the key used to sign the binary (required)
Silvestrs Timofejevs7fa33422021-03-09 12:11:59 +000014# 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).
20TEST_SILICON_CREATOR_APPS_SELFCHECKING = [
21 {
Timothy Trippel0703f962021-09-02 21:08:20 +000022 "name": "uart_smoketest",
Alphan Ulusoy04d9b3a2021-05-14 16:02:54 -040023 "signing_key": "fpga_key_1",
Silvestrs Timofejevs7fa33422021-03-09 12:11:59 +000024 },
25]