blob: c12d38f234904c4953f485aa676c3ebef2343dfd [file] [log] [blame]
Philipp Wagner03aaf322020-09-09 19:11:44 +01001# Copyright lowRISC contributors.
2# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3# SPDX-License-Identifier: Apache-2.0
4
Philipp Wagnera3adde22020-11-06 14:25:04 +00005# 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)
12# binary_name:
13# Basename of the test binary. Default: name (optional)
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).
Philipp Wagner03aaf322020-09-09 19:11:44 +010020TEST_APPS_SELFCHECKING = [
Philipp Wagnera3adde22020-11-06 14:25:04 +000021 {
22 "name": "aes_test",
23 },
24 {
25 "name": "crt_test",
26 },
27 {
Philipp Wagner8654b022020-11-17 19:06:36 +000028 "name": "dif_otbn_smoketest_rtl",
29 "binary_name": "dif_otbn_smoketest",
Philipp Wagner07aab342020-11-06 14:26:09 +000030 "verilator_extra_args": ['+OTBN_USE_MODEL=0'],
31 },
Philipp Wagnerce69b682020-11-06 16:35:22 +000032# Using the model in CI isn't possible until #4097 is resolved.
33# {
Philipp Wagner8654b022020-11-17 19:06:36 +000034# "name": "dif_otbn_smoketest_model",
35# "binary_name": "dif_otbn_smoketest",
Philipp Wagnerce69b682020-11-06 16:35:22 +000036# "verilator_extra_args": ['+OTBN_USE_MODEL=1'],
37# "targets": ["sim_verilator"],
38# },
Philipp Wagner07aab342020-11-06 14:26:09 +000039 {
Miguel Young de la Sota8a4cf452020-11-04 09:57:10 -050040 "name": "dif_otp_ctrl_smoketest",
41 },
42 {
Sam Elliottf8456182020-11-19 12:21:30 +000043 "name": "dif_plic_smoketest",
Philipp Wagnera3adde22020-11-06 14:25:04 +000044 },
45 {
Sam Elliottf8456182020-11-19 12:21:30 +000046 "name": "dif_rstmgr_smoketest",
Philipp Wagnera3adde22020-11-06 14:25:04 +000047 },
48 {
Sam Elliottf8456182020-11-19 12:21:30 +000049 "name": "dif_rv_timer_smoketest",
Philipp Wagnera3adde22020-11-06 14:25:04 +000050 },
51 {
Sam Elliottf8456182020-11-19 12:21:30 +000052 "name": "dif_uart_smoketest",
Philipp Wagnera3adde22020-11-06 14:25:04 +000053 },
54 {
55 "name": "flash_ctrl_test",
56 },
57 {
Sam Elliottf8456182020-11-19 12:21:30 +000058 "name": "pmp_smoketest_napot",
Philipp Wagnera3adde22020-11-06 14:25:04 +000059 },
60 {
Sam Elliottf8456182020-11-19 12:21:30 +000061 "name": "pmp_smoketest_tor",
Philipp Wagnera3adde22020-11-06 14:25:04 +000062 },
63 {
64 "name": "sha256_test",
65 },
66 {
67 "name": "usbdev_test",
68 "targets": ["sim_verilator"],
69 },
Philipp Wagner03aaf322020-09-09 19:11:44 +010070]