From 64cbaffb38a087fb92ce093d1127e5269e7faae0 Mon Sep 17 00:00:00 2001 From: Sunil Kumar Date: Thu, 3 Jan 2019 05:23:44 -0600 Subject: Flush NVDIMM Chipop Change-Id: Ibf249b59fd20f883a8b01e640f3e9be5f4a68500 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70070 Tested-by: Jenkins Server Tested-by: FSP CI Jenkins Reviewed-by: RAJA DAS --- src/test/testcases/test.xml | 3 +- src/test/testcases/testFlushNVDIMM.py | 58 ++++++++++++++++++++++++++++++++++ src/test/testcases/testFlushNVDIMM.xml | 30 ++++++++++++++++++ 3 files changed, 90 insertions(+), 1 deletion(-) create mode 100755 src/test/testcases/testFlushNVDIMM.py create mode 100755 src/test/testcases/testFlushNVDIMM.xml (limited to 'src/test') diff --git a/src/test/testcases/test.xml b/src/test/testcases/test.xml index ead04b00..c71e459b 100755 --- a/src/test/testcases/test.xml +++ b/src/test/testcases/test.xml @@ -5,7 +5,7 @@ - + @@ -36,6 +36,7 @@ ../simics/targets/p9_nimbus/sbeTest/testPSUSetStashPair.xml ../simics/targets/p9_nimbus/sbeTest/testIstep.xml ../simics/targets/p9_nimbus/sbeTest/testSuspendIO.xml + ../simics/targets/p9_nimbus/sbeTest/testFlushNVDIMM.xml ../simics/targets/p9_nimbus/sbeTest/testGeneric.xml ../simics/targets/p9_nimbus/sbeTest/testUnsecureMemRegions.xml diff --git a/src/test/testcases/testFlushNVDIMM.py b/src/test/testcases/testFlushNVDIMM.py new file mode 100755 index 00000000..3350bd77 --- /dev/null +++ b/src/test/testcases/testFlushNVDIMM.py @@ -0,0 +1,58 @@ +# IBM_PROLOG_BEGIN_TAG +# This is an automatically generated prolog. +# +# $Source: src/test/testcases/testFlushNVDIMM.py $ +# +# OpenPOWER sbe Project +# +# Contributors Listed Below - COPYRIGHT 2017,2019 +# +# +# 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,0x03 ] + +EXPDATA = [0xc0,0xde,0xa1,0x03, + 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/testFlushNVDIMM.xml b/src/test/testcases/testFlushNVDIMM.xml new file mode 100755 index 00000000..9effcbaa --- /dev/null +++ b/src/test/testcases/testFlushNVDIMM.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + run-python-file targets/p9_nimbus/sbeTest/testFlushNVDIMM.py + yes + + -- cgit v1.2.1