added negative testing for device APIs

Change-Id: I7bfcdd777f240d36b29eca987f7bc9da7614d704
Cette révision appartient à :
Aditya Atluri
2016-09-27 11:38:31 -05:00
Parent 4807279988
révision 4d56ac99e4
3 fichiers modifiés avec 30 ajouts et 0 suppressions
+10
Voir le fichier
@@ -0,0 +1,10 @@
#include<hip/hip_runtime.h>
#include<hip/hip_runtime_api.h>
#include"hipDeviceUtil.h"
int main()
{
HIP_CHECK(hipSetDevice(0), hipSetDevice);
HIP_CHECK(hipSetDevice(1026), hipSetDevice);
HIP_CHECK(hipSetDevice(-1), hipSetDevice);
}