aboutsummaryrefslogtreecommitdiff
path: root/test/src/unit/APITests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/unit/APITests.cpp')
-rwxr-xr-xtest/src/unit/APITests.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/src/unit/APITests.cpp b/test/src/unit/APITests.cpp
index 44f79be..ee00bb2 100755
--- a/test/src/unit/APITests.cpp
+++ b/test/src/unit/APITests.cpp
@@ -1609,26 +1609,10 @@ TEST_F(APITest,CExportsNoNameMangling)
//
#if NV_WIN32
-#if NV_DEBUG
- const char* dllName = "NvBlastDebug_x86.dll";
-#elif NV_CHECKED
- const char* dllName = "NvBlastChecked_x86.dll";
-#elif NV_PROFILE
- const char* dllName = "NvBlastProfile_x86.dll";
-#else
const char* dllName = "NvBlast_x86.dll";
-#endif
#elif NV_WIN64
-#if NV_DEBUG
- const char* dllName = "NvBlastDebug_x64.dll";
-#elif NV_CHECKED
- const char* dllName = "NvBlastChecked_x64.dll";
-#elif NV_PROFILE
- const char* dllName = "NvBlastProfile_x64.dll";
-#else
const char* dllName = "NvBlast_x64.dll";
#endif
-#endif
HMODULE dllHandle = LoadLibrary(TEXT(dllName));
DWORD error = GetLastError();