86017b799c
The API support function, performance counter, process information, topology and xgmi info. Change-Id: I3350ec75fdd2ca1438e79134582ae83c49763056
66 řádky
1.8 KiB
Plaintext
66 řádky
1.8 KiB
Plaintext
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
|
|
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
|
|
|
|
# Device specific blacklists
|
|
FILTER[vega10]=\
|
|
$BLACKLIST_ALL_ASICS
|
|
|
|
# SWDEV-207510
|
|
FILTER[vega20]=\
|
|
$BLACKLIST_ALL_ASICS\
|
|
"amdsmitstReadOnly.TestFrequenciesRead:"\
|
|
"amdsmitstReadOnly.TestProcInfoRead"
|
|
|
|
# SWDEV-207510
|
|
FILTER[arcturus]=\
|
|
$BLACKLIST_ALL_ASICS\
|
|
"amdsmitstReadOnly.TestFrequenciesRead:"\
|
|
"amdsmitstReadWrite.TestFrequenciesReadWrite:"\
|
|
"amdsmitstReadOnly.TestProcInfoRead"
|
|
|
|
# SWDEV-306889
|
|
FILTER[aldebaran]=\
|
|
$BLACKLIST_ALL_ASICS\
|
|
"amdsmitstReadOnly.FanRead:"\
|
|
"amdsmitstReadOnly.TestVoltCurvRead:"\
|
|
"amdsmitstReadOnly.TestFrequenciesRead:"\
|
|
"amdsmitstReadWrite.FanReadWrite:"\
|
|
"amdsmitstReadWrite.TestFrequenciesReadWrite:"\
|
|
"amdsmitstReadWrite.TestPciReadWrite:"\
|
|
"amdsmitstReadWrite.TestPowerReadWrite"
|
|
|
|
# SWDEV-319795
|
|
FILTER[sienna_cichlid]=\
|
|
$BLACKLIST_ALL_ASICS\
|
|
"amdsmitstReadWrite.TestPerfLevelReadWrite"
|
|
|
|
# SWDEV-321166
|
|
FILTER[virtualization]=\
|
|
$BLACKLIST_ALL_ASICS\
|
|
"amdsmitstReadOnly.TestOverdriveRead:"\
|
|
"amdsmitstReadOnly.TestGPUBusyRead:"\
|
|
"amdsmitstReadWrite.FanReadWrite:"\
|
|
"amdsmitstReadWrite.TestOverdriveReadWrite:"\
|
|
"amdsmitstReadWrite.TestPowerReadWrite:"\
|
|
"amdsmitstReadWrite.TestPowerCapReadWrite" |