ca4344f5fa
Initial testing include an "id test", which really just a template test at this point, and a temperature sensor test. The google test code is included in this commit. It will eventually be taken out and replaced with a pull from a google external repo. Change-Id: I591818a9c169f4654fc8d8f17cf648f227d72545
39 lines
959 B
Plaintext
39 lines
959 B
Plaintext
declare -A FILTER
|
|
|
|
# FILTER is meant to be used with a negative gtest filter
|
|
|
|
# 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
|
|
|
|
# ASIC specific blacklists
|
|
FILTER[vega10]=\
|
|
$BLACKLIST_ALL_ASICS
|
|
|
|
# SWDEV-207510
|
|
FILTER[vega20]=\
|
|
$BLACKLIST_ALL_ASICS\
|
|
"rsmitstReadOnly.TestFrequenciesRead:"\
|
|
"rsmitstReadOnly.TestProcInfoRead"
|
|
|
|
# SWDEV-207510
|
|
FILTER[arcturus]=\
|
|
$BLACKLIST_ALL_ASICS\
|
|
"rsmitstReadOnly.TestFrequenciesRead:"\
|
|
"rsmitstReadWrite.TestFrequenciesReadWrite:"\
|
|
"rsmitstReadOnly.TestProcInfoRead"
|
|
|