diff options
author | Sunil Kumar <skumar8j@in.ibm.com> | 2019-01-03 05:23:44 -0600 |
---|---|---|
committer | RAJA DAS <rajadas2@in.ibm.com> | 2019-01-07 06:54:43 -0600 |
commit | 64cbaffb38a087fb92ce093d1127e5269e7faae0 (patch) | |
tree | a5d6a4aeb3a1b40fb25e067588b2e6e4e28088bb /src/test/testcases/testFlushNVDIMM.py | |
parent | 658b2f4ef5f3057b1c7ea0cf0a0fa7579451a81e (diff) | |
download | talos-sbe-64cbaffb38a087fb92ce093d1127e5269e7faae0.tar.gz talos-sbe-64cbaffb38a087fb92ce093d1127e5269e7faae0.zip |
Flush NVDIMM Chipop
Change-Id: Ibf249b59fd20f883a8b01e640f3e9be5f4a68500
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70070
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: RAJA DAS <rajadas2@in.ibm.com>
Diffstat (limited to 'src/test/testcases/testFlushNVDIMM.py')
-rwxr-xr-x | src/test/testcases/testFlushNVDIMM.py | 58 |
1 files changed, 58 insertions, 0 deletions
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); + |