mirror of
https://github.com/celisej567/source-engine.git
synced 2025-12-31 21:48:22 +03:00
add macos workflow, fix filesystem_async max thread count
This commit is contained in:
@@ -128,7 +128,7 @@ bool CUnitTestApp::Create()
|
||||
while ((dir = readdir(d)) != NULL)
|
||||
{
|
||||
int len = strlen(dir->d_name);
|
||||
if( len > 2 && strcmp(dir->d_name+len-3, ".so") == 0)
|
||||
if( len > 2 && strcmp(dir->d_name+len-strlen(DLL_EXT_STRING), DLL_EXT_STRING) == 0)
|
||||
{
|
||||
static char path[2048];
|
||||
snprintf(path, sizeof(path), "tests/%s", dir->d_name);
|
||||
|
||||
Reference in New Issue
Block a user