This commit is contained in:
Er2 2023-05-01 15:08:14 +03:00
parent 36cc43902b
commit e502d4e14c
2 changed files with 3 additions and 2 deletions

View File

@ -224,7 +224,8 @@ int main( int argc, char *argv[] )
WaitForDebuggerConnect( argc, argv, 30 ); WaitForDebuggerConnect( argc, argv, 30 );
ret = dedicated_main( argc,argv ); int ret = dedicated_main( argc,argv );
dlclose( dedicated ); dlclose( dedicated );
return ret;
} }
#endif #endif

View File

@ -94,7 +94,7 @@ bool CUnitTestApp::Create()
#ifdef WIN32 #ifdef WIN32
WIN32_FIND_DATA findFileData; WIN32_FIND_DATA findFileData;
HANDLE hFind= FindFirstFile(LIBDIR "/tests/*.dll", &findFileData); HANDLE hFind= FindFirstFile("bin/tests/*.dll", &findFileData);
while (hFind != INVALID_HANDLE_VALUE) while (hFind != INVALID_HANDLE_VALUE)
{ {