2019-10-17 11:29:02 -05:00
|
|
|
declare -A FILTER
|
|
|
|
|
|
|
|
|
|
# FILTER is meant to be used with a negative gtest filter
|
|
|
|
|
|
2020-08-17 11:48:07 -05:00
|
|
|
# Designate the tests to be excluded from all test runs first,
|
|
|
|
|
# followed by tests that should be excluded by device.
|
|
|
|
|
|
2019-10-17 11:29:02 -05:00
|
|
|
# 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
|
|
|
|
|
TEMPORARY_BLACKLIST_ALL_ASICS=
|
|
|
|
|
|
|
|
|
|
if [ -z $PERMANENT_BLACKLIST_ALL_ASICS -a -z $TEMPORARY_BLACKLIST_ALL_ASICS ]; then
|
|
|
|
|
BLACKLIST_ALL_ASICS=
|
|
|
|
|
else
|
|
|
|
|
BLACKLIST_ALL_ASICS=\
|
|
|
|
|
"$PERMANENT_BLACKLIST_ALL_ASICS:"\
|
|
|
|
|
"$TEMPORARY_BLACKLIST_ALL_ASICS"
|
|
|
|
|
fi
|
|
|
|
|
|
2020-08-17 11:48:07 -05:00
|
|
|
# Device specific blacklists
|
2019-10-17 11:29:02 -05:00
|
|
|
FILTER[vega10]=\
|
|
|
|
|
$BLACKLIST_ALL_ASICS
|
|
|
|
|
|
2020-08-17 11:48:07 -05:00
|
|
|
# SWDEV-207510
|
2019-10-17 11:29:02 -05:00
|
|
|
FILTER[vega20]=\
|
|
|
|
|
$BLACKLIST_ALL_ASICS\
|
|
|
|
|
"rsmitstReadOnly.TestFrequenciesRead:"\
|
|
|
|
|
"rsmitstReadOnly.TestProcInfoRead"
|
|
|
|
|
|
2020-08-17 11:48:07 -05:00
|
|
|
# SWDEV-207510
|
2019-10-17 11:29:02 -05:00
|
|
|
FILTER[arcturus]=\
|
|
|
|
|
$BLACKLIST_ALL_ASICS\
|
|
|
|
|
"rsmitstReadOnly.TestFrequenciesRead:"\
|
2019-11-06 06:37:33 -06:00
|
|
|
"rsmitstReadWrite.TestFrequenciesReadWrite:"\
|
2019-10-17 11:29:02 -05:00
|
|
|
"rsmitstReadOnly.TestProcInfoRead"
|
|
|
|
|
|
2021-10-26 17:57:05 -04:00
|
|
|
# SWDEV-306889
|
|
|
|
|
FILTER[aldebaran]=\
|
|
|
|
|
$BLACKLIST_ALL_ASICS\
|
|
|
|
|
"rsmitstReadOnly.FanRead:"\
|
|
|
|
|
"rsmitstReadOnly.TestVoltCurvRead:"\
|
|
|
|
|
"rsmitstReadOnly.TestFrequenciesRead:"\
|
|
|
|
|
"rsmitstReadWrite.FanReadWrite:"\
|
|
|
|
|
"rsmitstReadWrite.TestFrequenciesReadWrite:"\
|
|
|
|
|
"rsmitstReadWrite.TestPciReadWrite:"\
|
2022-01-27 14:31:44 -05:00
|
|
|
"rsmitstReadWrite.TestPowerReadWrite"
|
|
|
|
|
|
|
|
|
|
# SWDEV-319795
|
|
|
|
|
FILTER[sienna_cichlid]=\
|
|
|
|
|
$BLACKLIST_ALL_ASICS\
|
2022-03-02 20:32:46 -05:00
|
|
|
"rsmitstReadWrite.TestPerfLevelReadWrite"
|
|
|
|
|
|
|
|
|
|
# SWDEV-321166
|
|
|
|
|
FILTER[virtualization]=\
|
|
|
|
|
$BLACKLIST_ALL_ASICS\
|
|
|
|
|
"rsmitstReadOnly.TestOverdriveRead:"\
|
|
|
|
|
"rsmitstReadOnly.TestGPUBusyRead:"\
|
|
|
|
|
"rsmitstReadWrite.FanReadWrite:"\
|
|
|
|
|
"rsmitstReadWrite.TestOverdriveReadWrite:"\
|
|
|
|
|
"rsmitstReadWrite.TestPowerReadWrite:"\
|
|
|
|
|
"rsmitstReadWrite.TestPowerCapReadWrite"
|