From 5b864457f5c937d83a00e2ac0886fc20903c5a6f Mon Sep 17 00:00:00 2001 From: William McSpaddden Date: Mon, 29 Apr 2024 20:42:01 -0500 Subject: added sail-specific, python fragments for use by run_test.py --- test_command_line_switch.py | 9 +++++++++ test_ignore_list.py | 7 +++++++ 2 files changed, 16 insertions(+) create mode 100644 test_command_line_switch.py create mode 100644 test_ignore_list.py diff --git a/test_command_line_switch.py b/test_command_line_switch.py new file mode 100644 index 0000000..4552106 --- /dev/null +++ b/test_command_line_switch.py @@ -0,0 +1,9 @@ + +sim_test_command_line_switch_dict = { + # test name sim command line switch + "rv32ui-v-ma_data" : "--enable-misaligned", + "rv32ui-p-ma_data" : "--enable-misaligned", + "rv64ui-v-ma_data" : "--enable-misaligned", + "rv64ui-p-ma_data" : "--enable-misaligned", + } + diff --git a/test_ignore_list.py b/test_ignore_list.py new file mode 100644 index 0000000..c5db6d2 --- /dev/null +++ b/test_ignore_list.py @@ -0,0 +1,7 @@ + +# Used by run_tests.py. This is a list of tests to be ignored +# when running a set of tests. + +ignore_test_tuple = [ + "rv64ssvnapot-p-napot", + ] -- cgit v1.1