SWDEV-1 - Fix warnings and update disabled test list (#163)

- Fix warnings in some test cases due to unused variables or signed/unsigned comparison.
- Disabled vulkan tests on MI200.

[ROCm/hip-tests commit: 88fbbd666b]
This commit is contained in:
Maneesh Gupta
2023-02-09 18:52:27 +05:30
committed by GitHub
parent aa1a82b9f0
commit e19e50052d
6 changed files with 24 additions and 9 deletions
@@ -213,12 +213,10 @@ TEST_CASE("Unit_hipPointerGetAttributes_Basic") {
char* A_d;
char* A_Pinned_h;
char* A_OSAlloc_h;
hipError_t e;
HIP_CHECK(hipMalloc(&A_d, Nbytes));
HIP_CHECK(hipHostMalloc(reinterpret_cast<void**>(&A_Pinned_h), Nbytes, hipHostMallocDefault));
A_OSAlloc_h = reinterpret_cast<char*>(malloc(Nbytes));
size_t free, total;
HIP_CHECK(hipMemGetInfo(&free, &total));