From b9226da65a3cd1c2170dcb57fdf3e25e82595d64 Mon Sep 17 00:00:00 2001 From: Raja Das Date: Tue, 20 Jun 2017 05:31:55 -0500 Subject: Suspend IO chip-op implementation Change-Id: I83d53a8414525c2d5916d54b0ac3e6ecbaeb6520 RTC:166974 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/42103 Tested-by: Jenkins Server Tested-by: FSP CI Jenkins Reviewed-by: Sachin Gupta Reviewed-by: Shakeeb A. Pasha B K Reviewed-by: AMIT J. TENDOLKAR --- src/test/testcases/test.xml | 1 + src/test/testcases/testSuspendIO.py | 58 ++++++++++++++++++++++++++++++++++++ src/test/testcases/testSuspendIO.xml | 30 +++++++++++++++++++ 3 files changed, 89 insertions(+) create mode 100755 src/test/testcases/testSuspendIO.py create mode 100755 src/test/testcases/testSuspendIO.xml (limited to 'src/test') diff --git a/src/test/testcases/test.xml b/src/test/testcases/test.xml index 9dd18c78..677cf9b2 100755 --- a/src/test/testcases/test.xml +++ b/src/test/testcases/test.xml @@ -33,6 +33,7 @@ ../simics/targets/p9_nimbus/sbeTest/testPSUSetStashPair.xml ../simics/targets/p9_nimbus/sbeTest/testIstep.xml ../simics/targets/p9_nimbus/sbeTest/testMatchStashPair.xml + ../simics/targets/p9_nimbus/sbeTest/testSuspendIO.xml ../simics/targets/p9_nimbus/sbeTest/testScom.xml ../simics/targets/p9_nimbus/sbeTest/testGeneric.xml diff --git a/src/test/testcases/testSuspendIO.py b/src/test/testcases/testSuspendIO.py new file mode 100755 index 00000000..2d30b44d --- /dev/null +++ b/src/test/testcases/testSuspendIO.py @@ -0,0 +1,58 @@ +# IBM_PROLOG_BEGIN_TAG +# This is an automatically generated prolog. +# +# $Source: src/test/testcases/testSuspendIO.py $ +# +# OpenPOWER sbe Project +# +# Contributors Listed Below - COPYRIGHT 2017 +# +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +# implied. See the License for the specific language governing +# permissions and limitations under the License. +# +# IBM_PROLOG_END_TAG + +import sys +sys.path.append("targets/p9_nimbus/sbeTest" ) +import testUtil +err = False + +TESTDATA = [0,0,0,2, + 0,0,0xA1,0x02 ] + +EXPDATA = [0xc0,0xde,0xa1,0x02, + 0x0,0x0,0x0,0x0, + 0x00,0x0,0x0,0x3]; + + +# MAIN Test Run Starts Here... +#------------------------------------------------- +def main( ): + testUtil.runCycles( 10000000 ) + testUtil.writeUsFifo( TESTDATA ) + testUtil.writeEot( ) + testUtil.readDsFifo( EXPDATA ) + testUtil.readEot( ) + +#------------------------------------------------- +# Calling all test code +#------------------------------------------------- +main() + +if err: + print ("\nTest Suite completed with error(s)") + #sys.exit(1) +else: + print ("\nTest Suite completed with no errors") + #sys.exit(0); + diff --git a/src/test/testcases/testSuspendIO.xml b/src/test/testcases/testSuspendIO.xml new file mode 100755 index 00000000..2bcf96ba --- /dev/null +++ b/src/test/testcases/testSuspendIO.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + run-python-file targets/p9_nimbus/sbeTest/testSuspendIO.py + yes + + -- cgit v1.2.1