diff --git a/hipamd/tests/src/texture/hipGetAlgntoffset2D.cpp b/hipamd/tests/src/texture/hipGetAlgntoffset2D.cpp index ead492dbfc..34376a0a76 100644 --- a/hipamd/tests/src/texture/hipGetAlgntoffset2D.cpp +++ b/hipamd/tests/src/texture/hipGetAlgntoffset2D.cpp @@ -37,10 +37,10 @@ texture tex; bool testResult = true; -void runTest(void); +bool runTest(void); int main(int argc, char** argv) { - runTest(); + testResult=runTest(); if (testResult) { passed(); @@ -50,7 +50,7 @@ int main(int argc, char** argv) { } -void runTest() +bool runTest() { int val[R][C],i,j; @@ -81,4 +81,5 @@ HIPCHECK(hipGetTextureAlignmentOffset(&offset,&tex)); HIPCHECK(hipUnbindTexture(&tex)); HIPCHECK(hipFreeArray(hipArray)); +return testResult; }