EXSWHTEC-65 - Implement additional Initialization and Version tests (#2972)

- Separate hipRuntimeGetVersion and hipDeviceGetUuid tests into positive and negative tests
 - Split Unit_hipDeviceGetUuid into Unit_hipDeviceGetUuid_Positive and Unit_hipDeviceGetUuid_Negative
 - Split Unit_hipRuntimeGetVersion_NegAndValTst into Unit_hipRuntimeGetVersion_Positive and Unit_hipRuntimeGetVersion_Negative
- Modify tests to use hipDevice_t instead of integer for devices in hipDeviceGetUuid negative test
- Implement additional Initialization and Version tests
 - Expand hipDeviceComputeCapability negative test with case when device is invalid
 - Expand hipDeviceGetP2PAttribute negative test with case when src and dst devices are the same
 - Expand hipDeviceGetP2PAttribute negative test with case when device is out of bound
 - Modify hipDeviceTotalMem negative test with case when device is invalid
 - Implement Unit_hipDeviceGetPCIBusId_PartialFill test which validates partial filling the bus id into a char array
- Fix minor formatting issues and change hipDeviceGetPCIBusId partial fill test into negative
- Modify negative tests to use integer device values
- Disable hipDeviceGetPCIBusId negative test on AMD
This commit is contained in:
nives-vukovic
2022-11-04 14:59:26 +01:00
committed by GitHub
parent dc5d658843
commit 10382f7f58
10 changed files with 119 additions and 32 deletions
@@ -16,6 +16,12 @@ LIABILITY, WHETHER INN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR INN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
/*
Testcase Scenarios :
Unit_hipDeviceComputeCapability_ValidateVersion - Check if hipDeviceComputeCapability api returns valid Major and Minor versions
Unit_hipDeviceComputeCapability_Negative - Test unsuccessful execution of hipDeviceComputeCapability when nullptr
or invalid device is set as input parameter
*/
/*
* Conformance test for checking functionality of
@@ -24,14 +30,13 @@ THE SOFTWARE.
#include <hip_test_common.hh>
/**
* hipDeviceComputeCapability tests
* hipDeviceComputeCapability negative tests
* Scenario1: Validates if &major = nullptr returns error code
* Scenario2: Validates if &minor = nullptr returns error code
* Scenario3: Check if Major and Minor Versions are valid
* Scenario3: Validates if device is -1
* Scenario4: Validates if device is out of bounds
*/
// Scenario 1 and 2
TEST_CASE("Unit_hipDeviceComputeCapability_NegTst") {
TEST_CASE("Unit_hipDeviceComputeCapability_Negative") {
int major, minor, numDevices;
hipDevice_t device;
@@ -51,12 +56,22 @@ TEST_CASE("Unit_hipDeviceComputeCapability_NegTst") {
REQUIRE_FALSE(hipDeviceComputeCapability(&major, nullptr, device)
== hipSuccess);
}
// Scenario3
SECTION("device is -1") {
REQUIRE_FALSE(hipDeviceComputeCapability(&major, &minor, -1)
== hipSuccess);
}
// Scenario4
SECTION("device is out of bounds") {
REQUIRE_FALSE(hipDeviceComputeCapability(&major, &minor, numDevices)
== hipSuccess);
}
} else {
WARN("Test skipped as no gpu devices available");
}
}
// Scenario 3 : Check whether major and minor version value is valid.
// Scenario 5 : Check whether major and minor version value is valid.
TEST_CASE("Unit_hipDeviceComputeCapability_ValidateVersion") {
int major, minor;
hipDevice_t device;