diff options
| author | Prasad Bg Ranganath <prasadbgr@in.ibm.com> | 2016-03-17 12:50:41 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-06-02 10:47:55 -0400 |
| commit | dc994064c73f0660b79021d4ef5969b16d715ae8 (patch) | |
| tree | e6a7ede571a911a430abdfb1c329d9e492a3e772 /src/usr/fapi2/test/rcTest.H | |
| parent | 977c4ed35c3120a0f978e5a518ea3e0eab66e073 (diff) | |
| download | blackbird-hostboot-dc994064c73f0660b79021d4ef5969b16d715ae8.tar.gz blackbird-hostboot-dc994064c73f0660b79021d4ef5969b16d715ae8.zip | |
FAPI2: FFDC Error XML Hostboot Integration
Change-Id: If5c82101d973ad8fb383252d93af3aa0bd97aea7
RTC: 124673
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/22194
Tested-by: Jenkins Server
Tested-by: FSP CI Jenkins
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/fapi2/test/rcTest.H')
| -rw-r--r-- | src/usr/fapi2/test/rcTest.H | 170 |
1 files changed, 170 insertions, 0 deletions
diff --git a/src/usr/fapi2/test/rcTest.H b/src/usr/fapi2/test/rcTest.H new file mode 100644 index 000000000..1e9e3d315 --- /dev/null +++ b/src/usr/fapi2/test/rcTest.H @@ -0,0 +1,170 @@ +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: src/usr/fapi2/test/rcTest.H $ */ +/* */ +/* OpenPOWER HostBoot Project */ +/* */ +/* Contributors Listed Below - COPYRIGHT 2011,2016 */ +/* [+] International Business Machines Corp. */ +/* */ +/* */ +/* 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 */ +#ifndef __rcTest_H +#define __rcTest_H + +/** + * @file rcTest.H + * + * @brief Test case for FAPI2 return codes +*/ + +#include <cxxtest/TestSuite.H> +#include <fapi2.H> +#include "rcTest.C" + +using namespace fapi2; + +class test_Fapi2ReturnCode: public CxxTest::TestSuite +{ +public: + + /** + * @brief Test FAPI2 return codes #1 + */ + void testFapi2ReturnCode1(void) + { + uint32_t l_res = rcTestDefaultConstructor(); + + if (l_res != 0) + { + TS_FAIL("testFapi2ReturnCode1. Fail l_res=%d", l_res); + } + } + + + /** + * @brief Test FAPI2 return codes #5 + */ + void testFapi2ReturnCode5() + { + uint32_t l_res = rcTestComparisonOperatorWithRCValue(); + + if (l_res != 0) + { + TS_FAIL("testFapi2ReturnCode5. Fail l_res=%d", l_res); + } + return; + } + + /** + * @brief Test FAPI2 return codes #11 + */ + void testFapi2ReturnCode11(void) + { + uint32_t l_res = rcTestGetErrorInfo(); + + if (l_res != 0) + { + TS_FAIL("testFapi2ReturnCode11. Fail l_res=%d", l_res); + } + } + + + /** + * @brief Test FAPI2 return codes #12 + */ + void testFapi2ReturnCode12() + { + uint32_t l_res = rcTestErrorInfo(); + + if (l_res != 0) + { + TS_FAIL("testFapi2ReturnCode12. Fail l_res=%d", l_res); + } + } + + /** + * @brief Test FAPI2 return codes #13 + */ + void testFapi2ReturnCode13() + { + uint32_t l_res = rcTestCopyConstructorwithErrorInfo(); + + if (l_res != 0) + { + TS_FAIL("testFapi2ReturnCode13. Fail l_res=%d", l_res); + } + return; + } + + /** + * @brief Test FAPI2 return codes #14 + */ + void testFapi2ReturnCode14() + { + uint32_t l_res = rcTestAssignmentOperatorwithErrorInfo(); + + if (l_res != 0) + { + TS_FAIL("testFapi2ReturnCode14. Fail l_res=%d", l_res); + } + return; + } + + /** + * @brief Test FAPI2 return codes #15 + */ + void testFapi2ReturnCode15() + { + uint32_t l_res = rcTestClearErrorInfo(); + + if (l_res != 0) + { + TS_FAIL("testFapi2ReturnCode15. Fail l_res=%d", l_res); + } + return; + } + + /** + * @brief Test FAPI2 return codes #16 + */ + void testFapi2ReturnCode16() + { + uint32_t l_res = rcTestAddErrorInfo(); + + if (l_res != 0) + { + TS_FAIL("testFapi2ReturnCode16. Fail l_res=%d", l_res); + } + return; + } + + /** + * @brief Test FAPI2 return codes #17 + */ + void testFapi2ReturnCode17() + { + uint32_t l_res = rcTestStaticCast(); + + if (l_res != 0) + { + TS_FAIL("testFapi2ReturnCode17. Fail l_res=%d", l_res); + } + return; + } +}; + +#endif |

