KFDTest: Add gfx1010 support in KFDTest script

Change-Id: I3c7132c73c68139677259aa57ea0b443ed664c14
Signed-off-by: shaoyunl <shaoyun.liu@amd.com>
Tento commit je obsažen v:
shaoyunl
2019-07-25 15:08:52 -04:00
odevzdal Yong Zhao
rodič cabebaa091
revize c7a946dd5d
2 změnil soubory, kde provedl 11 přidání a 1 odebrání
+9
Zobrazit soubor
@@ -155,6 +155,15 @@ ARCT_TESTS_BLACKLIST=\
"$BLACKLIST_ALL_ASICS:"\
"KFDExceptionTest.FaultStorm"
NAVI10_TESTS_BLACKLIST=\
"$BLACKLIST_ALL_ASICS:"\
"$SDMA_BLACKLIST:"\
"KFDEvictTest.BurstyTest:"\
"KFDEvictTest.QueueTest:"\
"KFDExceptionTest.InvalidBadAddress:"\
"KFDExceptionTest.InvalidWriteAddress:"\
"KFDQMTest.GPUDoorbellWrite"
# Core tests, used in scenarios like bringup
CORE_TESTS=\
"KFDQMTest.CreateDestroyCpQueue:"\
+2 -1
Zobrazit soubor
@@ -74,7 +74,8 @@ getFilter() {
vega20 ) FILTER="--gtest_filter=$VEGA20_TESTS_BLACKLIST" ;;
raven ) FILTER="--gtest_filter=$RAVEN_TESTS_BLACKLIST" ;;
arcturus ) FILTER="--gtest_filter=$ARCT_TESTS_BLACKLIST" ;;
core ) FILTER="--gtest_filter=$CORE_TESTS" ;;
navi10 ) FILTER="--gtest_filter=$NAVI10_TESTS_BLACKLIST" ;;
core ) FILTER="--gtest_filter=$CORE_TESTS" ;;
all ) FILTER="" ;;
*) die "Unsupported platform $platform. Exiting" ;;
esac