Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
2.4 KiB
Plaintext
Raw Permalink Normal View History

2022-08-24 11:31:20 -05:00
declare -A FILTER
# FILTER is meant to be used with a negative gtest filter
# Designate the tests to be excluded from all test runs first,
# followed by tests that should be excluded by device.
# Permanent exclusions
# These tests are included for debugging, but are not executed in normal
# execution on any ASIC:
PERMANENT_BLACKLIST_ALL_ASICS=
# This is the temporary blacklist for all ASICs. This is to be used when a test
# is failing consistently
2025-04-14 17:30:08 -05:00
TEMPORARY_BLACKLIST_ALL_ASICS="CperEntriesTest.*"
2022-08-24 11:31:20 -05:00
2023-09-28 17:33:23 -05:00
if [ -z "$PERMANENT_BLACKLIST_ALL_ASICS" -a -z "$TEMPORARY_BLACKLIST_ALL_ASICS" ]; then
2022-08-24 11:31:20 -05:00
BLACKLIST_ALL_ASICS=
else
BLACKLIST_ALL_ASICS=\
2023-09-28 17:33:23 -05:00
"$PERMANENT_BLACKLIST_ALL_ASICS:"\
"$TEMPORARY_BLACKLIST_ALL_ASICS:"
2022-08-24 11:31:20 -05:00
fi
# Device specific blacklists
FILTER[vega10]=\
2025-04-14 17:30:08 -05:00
$BLACKLIST_ALL_ASICS\
"CperEntriesTest.*"
2022-08-24 11:31:20 -05:00
# SWDEV-207510
FILTER[vega20]=\
$BLACKLIST_ALL_ASICS\
2025-04-14 17:30:08 -05:00
"CperEntriesTest.*:"\
2022-08-24 11:31:20 -05:00
"amdsmitstReadOnly.TestFrequenciesRead:"\
"amdsmitstReadOnly.TestProcInfoRead"
# SWDEV-207510
FILTER[arcturus]=\
$BLACKLIST_ALL_ASICS\
2025-04-14 17:30:08 -05:00
"CperEntriesTest.*:"\
2022-08-24 11:31:20 -05:00
"amdsmitstReadOnly.TestFrequenciesRead:"\
"amdsmitstReadWrite.TestFrequenciesReadWrite:"\
"amdsmitstReadOnly.TestProcInfoRead"
# SWDEV-306889
FILTER[aldebaran]=\
$BLACKLIST_ALL_ASICS\
2025-04-14 17:30:08 -05:00
"CperEntriesTest.*:"\
2022-08-24 11:31:20 -05:00
"amdsmitstReadOnly.FanRead:"\
"amdsmitstReadOnly.TestVoltCurvRead:"\
"amdsmitstReadOnly.TestFrequenciesRead:"\
"amdsmitstReadWrite.FanReadWrite:"\
"amdsmitstReadWrite.TestFrequenciesReadWrite:"\
"amdsmitstReadWrite.TestPciReadWrite:"\
"amdsmitstReadWrite.TestPowerReadWrite"
# SWDEV-319795
FILTER[sienna_cichlid]=\
$BLACKLIST_ALL_ASICS\
2025-04-14 17:30:08 -05:00
"CperEntriesTest.*:"\
2022-08-24 11:31:20 -05:00
"amdsmitstReadWrite.TestPerfLevelReadWrite"
# SWDEV-321166
FILTER[virtualization]=\
$BLACKLIST_ALL_ASICS\
"amdsmitstReadOnly.TestOverdriveRead:"\
"amdsmitstReadOnly.TestGPUBusyRead:"\
"amdsmitstReadWrite.FanReadWrite:"\
"amdsmitstReadWrite.TestOverdriveReadWrite:"\
"amdsmitstReadWrite.TestPowerReadWrite:"\
2023-09-28 17:33:23 -05:00
"amdsmitstReadWrite.TestPowerCapReadWrite"
# SWDEV-391407 and PLAT-156250
# aqua_vanjaram and later systems show 'ip discovery' in
# /sys/class/kfd/kfd/topology/nodes/*/name
#
# For those systems gfx_target_version must be used. It can be found in
# /sys/class/kfd/kfd/topology/nodes/*/properties
FILTER[90400]=\
$BLACKLIST_ALL_ASICS\
"rsmitstReadOnly.TestVoltCurvRead"
FILTER[90401]=${FILTER[90400]}
FILTER[90402]=${FILTER[90400]}
# SWDEV-572968
FILTER[gfx1151]=\
$BLACKLIST_ALL_ASICS\
"amdsmitstReadOnly.TestFrequenciesRead"